using System; using ZhiZhun.AuthenticationCenter.User; namespace ZhiZhun.AuthenticationCenter.Utility { public class UserBasicInfo { public Guid Id { get; set; } public string UserName { get; set; } = string.Empty; public string RealName { get; set; } = string.Empty; public UserType UserTypeEnum { get; set; } public string ReviewerCode { get; set; } = string.Empty; public string UserTypeShortName { get; set; } = string.Empty; } }