Gordon Pedersen
25f362bfc5
Including custom css and head content, but not custom themes or metadata (yet)
21 lines
775 B
C#
21 lines
775 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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; } = string.Empty;
|
|
public string Head { get; set; } = string.Empty;
|
|
public string Verified { get; set; } = string.Empty;
|
|
public string Pfp { get; set; } = string.Empty;
|
|
public string Metadata { get; set; } = string.Empty;
|
|
public string Branding { get; set; } = string.Empty;
|
|
|
|
}
|
|
}
|