Files
CapMachine/CapMachine.Wpf/SoftAuthorizeCore/AuthorizeInfo.cs
2025-04-07 22:28:15 +08:00

35 lines
753 B
C#

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