软件注册更改

This commit is contained in:
2025-04-07 21:50:03 +08:00
parent 9273f6db42
commit 3f520a2a27
11 changed files with 1326 additions and 13 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; }
}
}