source: FarmatikoData/Models/MedicineList.cs@ c352b2d

Last change on this file since c352b2d was 92a1f41, checked in by Mile Jankuloski <mile.jankuloski@…>, 4 years ago

Revert "Merge branch 'master' of https://develop.finki.ukim.mk/git/farmatiko"

This reverts commit 0c48bbb15c709978f24de20eba18e85b11b413f0, reversing
changes made to dba4ca99892de5ac575b5b732c6926c30f837f5f.

Reverting

  • Property mode set to 100644
File size: 443 bytes
Line 
1using System.Collections.Generic;
2using FarmatikoData.Models;
3using Microsoft.EntityFrameworkCore;
4
5namespace 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.