Last change
on this file since 30a465f was 30a465f, checked in by DimitarSlezenkovski <dslezenkovski@…>, 4 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
524 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 | using Microsoft.EntityFrameworkCore;
|
---|
5 |
|
---|
6 | namespace FarmatikoData.Models
|
---|
7 | {
|
---|
8 | public class Medicine
|
---|
9 | {
|
---|
10 | public Medicine() { }
|
---|
11 | public string Name { get; set; }
|
---|
12 | public string Strength { get; set; }
|
---|
13 | public string Form { get; set; }
|
---|
14 | public string WayOfIssuing { get; set; }
|
---|
15 | public string Manufacturer { get; set; }
|
---|
16 | public float Price { get; set; }
|
---|
17 | public string Packaging { get; set; }
|
---|
18 |
|
---|
19 | }
|
---|
20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.