9 lines
295 B
C#
9 lines
295 B
C#
namespace Neighbourhood.omg.lol.Models {
|
|
public class PostProfile {
|
|
public string Content { get; set; } = string.Empty;
|
|
public bool Publish { get; set; } = true;
|
|
public string? Theme { get; set; }
|
|
public string? Css { get; set; }
|
|
public string? Head { get; set; }
|
|
}
|
|
}
|