tesses-cms/Tesses.CMS.Client/UserAccount.cs

14 lines
344 B
C#
Raw Permalink Normal View History

2024-07-28 22:59:28 +00:00
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;}="";
}
}