source:
FarmatikoData/Models/Pharmacy.cs@
c73269d
Last change on this file since c73269d was a8ccc2c, checked in by , 4 years ago | |
---|---|
|
|
File size: 426 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Text; |
4 | using FarmatikoData.Base; |
5 | using Microsoft.EntityFrameworkCore; |
6 | |
7 | namespace FarmatikoData.Models |
8 | { |
9 | public class Pharmacy : BaseEntity |
10 | { |
11 | public Pharmacy() { } |
12 | public string Name { get; set; } |
13 | public string Location { get; set; } |
14 | public string Address { get; set; } |
15 | public bool WorkAllTime { get; set; } |
16 | } |
17 | } |
Note:
See TracBrowser
for help on using the repository browser.