9 lines
366 B
C#
9 lines
366 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: api_key and settings
|
|
}
|
|
}
|