source: FarmatikoData/Models/HealthcareWorkers.cs@ ec6ac45

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

Initial commit

  • Property mode set to 100644
File size: 512 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel.DataAnnotations;
4using System.Text;
5using Microsoft.EntityFrameworkCore;
6
7namespace FarmatikoData.Models
8{
9 public class HealthcareWorkers
10 {
11 public HealthcareWorkers() { }
12 [Required]
13 public string Name { get; set; }
14 [Required]
15 public string Branch { get; set; }
16 [Required]
17 public HealthFacilities Facility { get; set; }
18 public string Title { get; set; }
19 }
20}
Note: See TracBrowser for help on using the repository browser.