source:
FarmatikoData/Models/MedicineList.cs@
4e72684
Last change on this file since 4e72684 was 37c8d1d, checked in by , 4 years ago | |
---|---|
|
|
File size: 492 bytes |
Rev | Line | |
---|---|---|
[30a465f] | 1 | using System.Collections.Generic; |
[a8ccc2c] | 2 | using FarmatikoData.Base; |
[30a465f] | 3 | using FarmatikoData.Models; |
4 | using Microsoft.EntityFrameworkCore; | |
5 | ||
6 | namespace FarmatikoData.Models | |
7 | { | |
[a8ccc2c] | 8 | public class MedicineList : BaseEntity |
[30a465f] | 9 | { |
[37c8d1d] | 10 | public Medicine Medicine { get; set; } |
[30a465f] | 11 | public bool HasMedicine { get; set; } |
[37c8d1d] | 12 | /*public ICollection<MedicineList> MedicinesList { get; set; } |
[30a465f] | 13 | public MedicineList() |
14 | { | |
[37c8d1d] | 15 | MedicinesList = new HashSet<MedicineList>(); |
16 | }*/ | |
[30a465f] | 17 | } |
18 | } |
Note:
See TracBrowser
for help on using the repository browser.