Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
1234567891011121314 |
- 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<DrugBatch> DrugBatches { get; set; } = new List<DrugBatch>();
- }
- }
|