19 lines
		
	
	
		
			501 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			501 B
		
	
	
	
		
			C#
		
	
	
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;
 | 
						|
 | 
						|
 | 
						|
    }
 | 
						|
} |