Last change
on this file since fbaea22 was 30a465f, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
607 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.ComponentModel.DataAnnotations;
|
---|
4 | using System.Text;
|
---|
5 | using Microsoft.EntityFrameworkCore;
|
---|
6 |
|
---|
7 | namespace FarmatikoData.Models
|
---|
8 | {
|
---|
9 | public class HealthFacilities
|
---|
10 | {
|
---|
11 | public HealthFacilities() { }
|
---|
12 | [Required]
|
---|
13 | public string Name { get; set; }
|
---|
14 | [Required]
|
---|
15 | public string Municipality { get; set; }
|
---|
16 | [Required]
|
---|
17 | public string Address { get; set; }
|
---|
18 | [Required]
|
---|
19 | public string Type { get; set; }
|
---|
20 | public string Email { get; set; }
|
---|
21 | public string Phone { get; set; }
|
---|
22 | }
|
---|
23 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.