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

10 lines
366 B
C#
Raw Permalink 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;
//TODO: api_key and settings
}
}