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

13 lines
433 B
C#
Raw Normal View History

2024-07-02 00:29:50 +00:00
namespace Neighbourhood.omg.lol.Models {
public class AccountResponseData : IOmgLolResponseData {
2024-07-02 00:29:50 +00:00
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;
2025-02-10 09:52:51 +00:00
//TODO Add api_key and settings to AccountResponseData
// <!--
// order:-180
// -->
2024-07-02 00:29:50 +00:00
}
}