using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.SoftAuthorizeCore
{
///
/// 授权信息
///
public class AuthorizeInfo
{
///
/// 开始时间
///
public DateTime StartTime { get; set; }
///
/// 结束时间
///
public DateTime EndTime { get; set; }
///
/// 最近登录时间
///
public DateTime LastTime { get; set; }
///
/// 机器码 序列号
///
public string MachineCode { get; set; }
}
}