- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoData/Models/Pharmacy.cs
r30a465f r171f106 1 1 using System; 2 2 using System.Collections.Generic; 3 using System.ComponentModel.DataAnnotations; 3 4 using System.Text; 5 using FarmatikoData.Base; 4 6 using Microsoft.EntityFrameworkCore; 5 7 6 8 namespace FarmatikoData.Models 7 9 { 8 public class Pharmacy 10 public class Pharmacy : BaseEntity 9 11 { 10 12 public Pharmacy() { } 13 [Required] 11 14 public string Name { get; set; } 15 [Required] 12 16 public string Location { get; set; } 17 [Required] 13 18 public string Address { get; set; } 14 19 public bool WorkAllTime { get; set; }
Note:
See TracChangeset
for help on using the changeset viewer.