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

10 lines
295 B
C#
Raw Permalink Normal View History

2024-07-11 05:57:53 +00:00
namespace Neighbourhood.omg.lol.Models {
public class PostProfile {
public string Content { get; set; } = string.Empty;
public bool Publish { get; set; } = true;
2024-07-11 05:57:53 +00:00
public string? Theme { get; set; }
public string? Css { get; set; }
public string? Head { get; set; }
}
}