10 lines
307 B
C#
10 lines
307 B
C#
namespace Model;
|
|
|
|
public class DocData
|
|
{
|
|
public string Title { get; init; } = "";
|
|
public string Category { get; init; } = "";
|
|
public string Content { get; init; } = "";
|
|
public Dictionary<string, string> Frontmatter { get; init; } = [];
|
|
public List<string>? Syndicates { get; init; }
|
|
} |