source: FarmatikoData/Models/HealthFacilities.cs@ c352b2d

Last change on this file since c352b2d was 92a1f41, checked in by Mile Jankuloski <mile.jankuloski@…>, 4 years ago

Revert "Merge branch 'master' of https://develop.finki.ukim.mk/git/farmatiko"

This reverts commit 0c48bbb15c709978f24de20eba18e85b11b413f0, reversing
changes made to dba4ca99892de5ac575b5b732c6926c30f837f5f.

Reverting

  • Property mode set to 100644
File size: 607 bytes
RevLine 
[30a465f]1using System;
2using System.Collections.Generic;
3using System.ComponentModel.DataAnnotations;
4using System.Text;
5using Microsoft.EntityFrameworkCore;
6
7namespace FarmatikoData.Models
8{
[92a1f41]9 public class HealthFacilities
[30a465f]10 {
11 public HealthFacilities() { }
12 [Required]
13 public string Name { get; set; }
14 [Required]
15 public string Municipality { get; set; }
16 [Required]
17 public string Address { get; set; }
18 [Required]
19 public string Type { get; set; }
20 public string Email { get; set; }
21 public string Phone { get; set; }
22 }
23}
Note: See TracBrowser for help on using the repository browser.