feat(Docs) Added FrontMatter and Git edit links
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using YamlDotNet.Serialization;
|
||||
|
||||
namespace Model.Doc;
|
||||
|
||||
public class DocFrontMatterModel
|
||||
{
|
||||
[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; }
|
||||
}
|
||||
Reference in New Issue
Block a user