授权更改

This commit is contained in:
2025-04-07 22:28:15 +08:00
parent 2ad76399a6
commit e1d81f6aee
8 changed files with 1307 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
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; }
}
}