source: FarmatikoData/Models/Pharmacy.cs@ e42f61a

Last change on this file since e42f61a was a8ccc2c, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago

Add migration, BaseEntity class and FarmatikoServices

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