feat(Docs) Added FrontMatter and Git edit links

This commit is contained in:
2022-04-11 23:31:23 -04:00
parent ddb6318186
commit 1939bbe70a
31 changed files with 254 additions and 299 deletions
+12
View File
@@ -0,0 +1,12 @@
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; }
}