using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Rdh.SocketServer.Client.Models { public class DrugLotProtocol : ModelProtocol { public string? Barcode { get; set; } public string? DrugKey { get; set; } public string? DrugLotCode { get; set; } public string? SupplyState { get; set; } public override string GetContent() { return Barcode + AddBlockContent(DrugKey) + AddBlockContent(DrugLotCode) + AddBlockContent(SupplyState); } } }