XFEExtension.NetCore.ServerInteractive
[DLL] Server interaction extension, including user identity verification and querying in conjunction with AutoConfig
关注
0
Fork
0
Star
0
using XFEExtension.NetCore.ServerInteractive.Interfaces;
namespace XFEExtension.NetCore.ServerInteractive.Models;
/// <summary>
/// 用户接口信息
/// </summary>
public class UserFaceInfo : IUserFaceInfo
{
/// <inheritdoc cref="IUserFaceInfo" />
public string Id { get; set; } = string.Empty;
/// <inheritdoc/>
public long Version { get; set; }
/// <inheritdoc/>
public string NickName { get; set; } = string.Empty;
/// <inheritdoc/>
public int PermissionLevel { get; set; }
}
using XFEExtension.NetCore.ServerInteractive.Interfaces;
namespace XFEExtension.NetCore.ServerInteractive.Models;
/// <summary>
/// 用户接口信息
/// </summary>
public class UserFaceInfo : IUserFaceInfo
{
/// <inheritdoc cref="IUserFaceInfo" />
public string Id { get; set; } = string.Empty;
/// <inheritdoc/>
public long Version { get; set; }
/// <inheritdoc/>
public string NickName { get; set; } = string.Empty;
/// <inheritdoc/>
public int PermissionLevel { get; set; }
}