Changeset 0c48bbb for FarmatikoData/Models/Pharmacy.cs
- Timestamp:
- 07/21/20 12:05:35 (4 years ago)
- Branches:
- master
- Children:
- 333cdac, 92a1f41
- Parents:
- dba4ca9 (diff), f33b0d4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
FarmatikoData/Models/Pharmacy.cs
rdba4ca9 r0c48bbb 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.