电子药箱通讯服务端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Drug.cs 196B

7 kuukautta sitten
12345678910
  1. using System;
  2. namespace Rdh.ElectronicMedicineKit.Models
  3. {
  4. public class Drug : RootEntity
  5. {
  6. public string RFID { get; set; }
  7. public Guid DrugBatchId { get; set; }
  8. }
  9. }