mh_frame_sps/APT.Infrastructure.Core/Structs/UpdateCodeSerialInfo.cs

29 lines
530 B
C#
Raw Permalink Normal View History

2026-04-07 13:47:52 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace APT.Infrastructure.Core
{
public class UpdateCodeSerialInfo
{
public UpdateCodeSerialInfo()
{
this.CodeTypes = new List<int>();
this.IsCheckState = true;
}
public string DisplayCodeName { get; set; }
public List<int> CodeTypes { get; set; }
public string Serial { get; set; }
public bool IsUsed { get; set; }
public bool IsCheckState { get; set; }
public DateTime? Time { get; set; }
}
}