Neighbourhood.omg.lol/Models/API/AccountResponseData.cs

12 lines
433 B
C#

namespace Neighbourhood.omg.lol.Models {
public class AccountResponseData : IOmgLolResponseData {
public string Message { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public TimeData Created { get; set; } = TimeData.Empty;
//TODO Add api_key and settings to AccountResponseData
// <!--
// order:-180
// -->
}
}