Last change
on this file since ee137aa was a55ef91, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Update & add service
|
-
Property mode
set to
100644
|
File size:
671 bytes
|
Rev | Line | |
---|
[30a465f] | 1 | using System;
|
---|
[a55ef91] | 2 | using System.Collections;
|
---|
[30a465f] | 3 | using System.Collections.Generic;
|
---|
| 4 | using System.ComponentModel.DataAnnotations;
|
---|
| 5 | using System.Text;
|
---|
[a8ccc2c] | 6 | using FarmatikoData.Base;
|
---|
[30a465f] | 7 | using Microsoft.EntityFrameworkCore;
|
---|
| 8 |
|
---|
| 9 | namespace FarmatikoData.Models
|
---|
| 10 | {
|
---|
[a8ccc2c] | 11 | public class HealthFacilities : BaseEntity
|
---|
[30a465f] | 12 | {
|
---|
| 13 | public HealthFacilities() { }
|
---|
[37c8d1d] | 14 | [Required]
|
---|
[30a465f] | 15 | public string Name { get; set; }
|
---|
| 16 | [Required]
|
---|
| 17 | public string Municipality { get; set; }
|
---|
| 18 | [Required]
|
---|
| 19 | public string Address { get; set; }
|
---|
| 20 | [Required]
|
---|
| 21 | public string Type { get; set; }
|
---|
| 22 | public string Email { get; set; }
|
---|
| 23 | public string Phone { get; set; }
|
---|
| 24 | }
|
---|
| 25 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.