feat(Notes) notes are now markdown. Documents WIP

This commit is contained in:
2022-04-01 19:41:19 -04:00
parent 14ed0c3ea5
commit 596f82bc8c
19 changed files with 178 additions and 246 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
namespace Model.Documentation;
public class DocumentationModel
{
public int Id { get; set; }
public DateTime CreatedDate { get; set; }
public DateTime UpdatedDate { get; set; }
public string Name { get; set; }
public string Section { get; set; }
public string Description { get; set; }
}