source: FarmatikoData/Models/Pharmacy.cs@ a8ccc2c

Last change on this file since a8ccc2c 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
RevLine 
[30a465f]1using System;
2using System.Collections.Generic;
3using System.Text;
[a8ccc2c]4using FarmatikoData.Base;
[30a465f]5using Microsoft.EntityFrameworkCore;
6
7namespace FarmatikoData.Models
8{
[a8ccc2c]9 public class Pharmacy : BaseEntity
[30a465f]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.