9 lines
256 B
C#
9 lines
256 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; } = [];
|
|
} |