Last change
on this file since 4e72684 was e42f61a, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Add more services
|
-
Property mode
set to
100644
|
File size:
459 bytes
|
Line | |
---|
1 | using FarmatikoData.Base;
|
---|
2 |
|
---|
3 | namespace FarmatikoData.Models
|
---|
4 | {
|
---|
5 | public class Medicine : BaseEntity
|
---|
6 | {
|
---|
7 | public Medicine() { }
|
---|
8 | public string Name { get; set; }
|
---|
9 | public string Strength { get; set; }
|
---|
10 | public string Form { get; set; }
|
---|
11 | public string WayOfIssuing { get; set; }
|
---|
12 | public string Manufacturer { get; set; }
|
---|
13 | public float Price { get; set; }
|
---|
14 | public string Packaging { get; set; }
|
---|
15 |
|
---|
16 | }
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.