Last change
on this file since 30a465f was 30a465f, checked in by DimitarSlezenkovski <dslezenkovski@…>, 3 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
512 bytes
|
Rev | Line | |
---|
[30a465f] | 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 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.