You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
686 B
28 lines
686 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace Common.Applications.Verification
|
||
|
{
|
||
|
public class ClientVerificationInformation
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 客户端密钥
|
||
|
/// </summary>
|
||
|
public string ClientSN { get; set; }
|
||
|
/// <summary>
|
||
|
/// 客户端权限
|
||
|
/// </summary>
|
||
|
public Data.UserAuthority UserAuthority { get; set; }
|
||
|
/// <summary>
|
||
|
/// 删除状态
|
||
|
/// </summary>
|
||
|
public Data.FlagDel FlagDel { get; set; }
|
||
|
/// <summary>
|
||
|
/// 创建时间
|
||
|
/// </summary>
|
||
|
public string CreateTime { get; set; }
|
||
|
}
|
||
|
}
|