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:
443 bytes
|
Line | |
---|
1 | using System.Collections.Generic;
|
---|
2 | using FarmatikoData.Models;
|
---|
3 | using Microsoft.EntityFrameworkCore;
|
---|
4 |
|
---|
5 | namespace FarmatikoData.Models
|
---|
6 | {
|
---|
7 | public class MedicineList
|
---|
8 | {
|
---|
9 | public Medicine Medicines { get; set; }
|
---|
10 | public bool HasMedicine { get; set; }
|
---|
11 | public ICollection<Medicine> MedicinesList { get; set; }
|
---|
12 | public MedicineList()
|
---|
13 | {
|
---|
14 | MedicinesList = new HashSet<Medicine>();
|
---|
15 | }
|
---|
16 |
|
---|
17 | }
|
---|
18 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.