10 lines
291 B
C#
10 lines
291 B
C#
namespace Chrono.Model;
|
|
|
|
public class DocData
|
|
{
|
|
public string Title { get; init; } = "";
|
|
public string Category { get; init; } = "";
|
|
public string Content { get; init; } = "";
|
|
public System.Collections.Generic.Dictionary<string, string> Frontmatter { get; init; } = [];
|
|
}
|