source: FarmatikoData/Models/Medicine.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: 563 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 Medicine : BaseEntity
10 {
11 public Medicine() { }
12 public string Name { get; set; }
13 public string Strength { get; set; }
14 public string Form { get; set; }
15 public string WayOfIssuing { get; set; }
16 public string Manufacturer { get; set; }
17 public float Price { get; set; }
18 public string Packaging { get; set; }
19
20 }
21}
Note: See TracBrowser for help on using the repository browser.