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

16 lines
653 B
C#

namespace Neighbourhood.omg.lol.Models {
public class ProfileResponseData: IOmgLolResponseData {
public string Message { get; set; } = string.Empty;
public string Content { get; set; } = string.Empty;
public string Type { get; set; } = string.Empty;
public string Theme { get; set; } = string.Empty;
public string? Css { get; set; }
public string? Head { get; set; }
public short Verified { get; set; }
public string Pfp { get; set; } = string.Empty;
public string Metadata { get; set; } = string.Empty;
public string Branding { get; set; } = string.Empty;
public string? Modified { get; set; }
}
}