using System; using System.Collections.Generic; using System.Text; namespace APT.Infrastructure.Core { public class UpdateCodeSerialInfo { public UpdateCodeSerialInfo() { this.CodeTypes = new List(); this.IsCheckState = true; } public string DisplayCodeName { get; set; } public List CodeTypes { get; set; } public string Serial { get; set; } public bool IsUsed { get; set; } public bool IsCheckState { get; set; } public DateTime? Time { get; set; } } }