source: FarmatikoData/Models/HealthFacilities.cs@ 333cdac

Last change on this file since 333cdac was 333cdac, checked in by Mile Jankuloski <mile.jankuloski@…>, 4 years ago

Frontend adjustments for prototype

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