source: FarmatikoData/Models/HealthFacilities.cs@ a55ef91

Last change on this file since a55ef91 was a55ef91, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Update & add service

  • Property mode set to 100644
File size: 671 bytes
Line 
1using System;
2using System.Collections;
3using System.Collections.Generic;
4using System.ComponentModel.DataAnnotations;
5using System.Text;
6using FarmatikoData.Base;
7using Microsoft.EntityFrameworkCore;
8
9namespace FarmatikoData.Models
10{
11 public class HealthFacilities : BaseEntity
12 {
13 public HealthFacilities() { }
14 [Required]
15 public string Name { get; set; }
16 [Required]
17 public string Municipality { get; set; }
18 [Required]
19 public string Address { get; set; }
20 [Required]
21 public string Type { get; set; }
22 public string Email { get; set; }
23 public string Phone { get; set; }
24 }
25}
Note: See TracBrowser for help on using the repository browser.