26 lines
691 B
C#
26 lines
691 B
C#
namespace Web.Models;
|
|
|
|
public class NoteInfo
|
|
{
|
|
public string Slug { get; set; } = "";
|
|
public string Title { get; set; } = "";
|
|
public string? Category { get; set; }
|
|
public string? Cost { get; set; }
|
|
public string? GearCategory { get; set; }
|
|
public string? Effect { get; set; }
|
|
public string? Location { get; set; }
|
|
}
|
|
|
|
public class NotesIndex
|
|
{
|
|
public List<NoteInfo> Notes { get; set; } = new();
|
|
}
|
|
|
|
public class NoteDocument
|
|
{
|
|
public string Slug { get; set; } = "";
|
|
public string Title { get; set; } = "";
|
|
public string? Category { get; set; }
|
|
public string FrontmatterHtml { get; set; } = "";
|
|
public string HtmlContent { get; set; } = "";
|
|
} |