using XFEExtension.NetCore.ServerInteractive.Interfaces; namespace XFEExtension.NetCore.ServerInteractive.Models; /// /// 用户接口信息 /// public class UserFaceInfo : IUserFaceInfo { /// public string Id { get; set; } = string.Empty; /// public string NickName { get; set; } = string.Empty; /// public int PermissionLevel { get; set; } }