29 lines
530 B
C#
29 lines
530 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|