12 lines
266 B
C#
12 lines
266 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Icarus.Models;
|
|
|
|
public class RegisterResult : BaseResult
|
|
{
|
|
[JsonProperty("username")]
|
|
public string Username { get; set; }
|
|
[JsonProperty("successfully_registered")]
|
|
public bool SuccessfullyRegistered { get; set; }
|
|
}
|