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
|
Rev | Line | |
---|
[333cdac] | 1 | using System;
|
---|
[30a465f] | 2 | using System.Collections.Generic;
|
---|
| 3 | using System.ComponentModel.DataAnnotations;
|
---|
| 4 | using System.Text;
|
---|
[171f106] | 5 | using FarmatikoData.Base;
|
---|
[30a465f] | 6 | using Microsoft.EntityFrameworkCore;
|
---|
| 7 |
|
---|
| 8 | namespace 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.