Rev | Line | |
---|
[30a465f] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.ComponentModel.DataAnnotations;
|
---|
| 4 | using System.Text;
|
---|
[a8ccc2c] | 5 | using FarmatikoData.Base;
|
---|
[30a465f] | 6 | using Microsoft.EntityFrameworkCore;
|
---|
| 7 |
|
---|
| 8 | namespace FarmatikoData.Models
|
---|
| 9 | {
|
---|
[a8ccc2c] | 10 | public class HealthcareWorkers : BaseEntity
|
---|
[30a465f] | 11 | {
|
---|
| 12 | public HealthcareWorkers() { }
|
---|
| 13 | [Required]
|
---|
| 14 | public string Name { get; set; }
|
---|
| 15 | [Required]
|
---|
| 16 | public string Branch { get; set; }
|
---|
| 17 | [Required]
|
---|
| 18 | public HealthFacilities Facility { get; set; }
|
---|
| 19 | public string Title { get; set; }
|
---|
| 20 | }
|
---|
| 21 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.