软件注册更改
This commit is contained in:
34
CapMachine.Wpf/SoftAuthorizeCore/AuthorizeInfo.cs
Normal file
34
CapMachine.Wpf/SoftAuthorizeCore/AuthorizeInfo.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user