c17c9cd329
Using the short namesapce declaration for conciseness
14 lines
281 B
C#
14 lines
281 B
C#
using System;
|
|
|
|
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; }
|
|
}
|