Gordon Pedersen
25f362bfc5
Including custom css and head content, but not custom themes or metadata (yet)
14 lines
373 B
C#
14 lines
373 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 PostProfile {
|
|
public string Content { get; set; } = string.Empty;
|
|
public bool Publish { get; set; } = true;
|
|
public string? Css { get; set; }
|
|
public string? Head { get; set; }
|
|
}
|
|
}
|