source: FarmatikoData/Models/Pharmacy.cs@ 1f041f6

Last change on this file since 1f041f6 was 30a465f, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Initial commit

  • Property mode set to 100644
File size: 387 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using Microsoft.EntityFrameworkCore;
5
6namespace 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.