Fan website of IMMORTAL: Gates of Pyre.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
417 B

using System;
using YamlDotNet.Serialization;
namespace Model.Notes;
public class NoteFrontMatterModel
{
[YamlMember(Alias = "title")] public string Title { get; set; }
[YamlMember(Alias = "summary")] public string Summary { get; set; }
[YamlMember(Alias = "created_date")] public DateTime CreatedDate { get; set; }
[YamlMember(Alias = "updated_date")] public DateTime UpdatedDate { get; set; }
}