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