14 lines
		
	
	
		
			344 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			344 B
		
	
	
	
		
			C#
		
	
	
	
using Newtonsoft.Json;
 | 
						|
 | 
						|
namespace Tesses.CMS.Client
 | 
						|
{
 | 
						|
    public class UserAccount 
 | 
						|
    {
 | 
						|
        [JsonProperty("username")]
 | 
						|
        public string Username {get;set;}="";
 | 
						|
        [JsonProperty("proper_name")]
 | 
						|
        public string ProperName {get;set;}="";
 | 
						|
        [JsonProperty("about_me")]
 | 
						|
        public string AboutMe {get;set;}="";
 | 
						|
    }
 | 
						|
} |