Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
123456789101112131415 |
- using System;
-
- namespace Rdh.ElectronicMedicineKit.Models
- {
- public class MedicineKitConfig : RootEntity
- {
- public MedicineKitTypes KitType { get; set; } = MedicineKitTypes.¼±¾È;
-
- public virtual DrugInfo Drug { get; set; }
- public Guid DrugId { get; set; }
-
- public int MaxAmount { get; set; }
- public int? WarnAmount { get; set; }
- }
- }
|