source: FarmatikoData/Models/Pharmacy.cs@ f33b0d4

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

Add BaseEntity class and it's inheritance

  • Property mode set to 100644
File size: 528 bytes
RevLine 
[30a465f]1using System;
2using System.Collections.Generic;
[171f106]3using System.ComponentModel.DataAnnotations;
[30a465f]4using System.Text;
[171f106]5using FarmatikoData.Base;
[30a465f]6using Microsoft.EntityFrameworkCore;
7
8namespace FarmatikoData.Models
9{
[171f106]10 public class Pharmacy : BaseEntity
[30a465f]11 {
12 public Pharmacy() { }
[171f106]13 [Required]
[30a465f]14 public string Name { get; set; }
[171f106]15 [Required]
[30a465f]16 public string Location { get; set; }
[171f106]17 [Required]
[30a465f]18 public string Address { get; set; }
19 public bool WorkAllTime { get; set; }
20 }
21}
Note: See TracBrowser for help on using the repository browser.