using System.Collections.Generic; namespace Rdh.ElectronicMedicineKit.Models { public class DrugInfo : RootEntity { public string Name { get; set; } public string Specifications { get; set; } public string Manufacturer { get; set; } public string Unit { get; set; } public virtual List DrugBatches { get; set; } = new List(); } }