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