feat(Notes) notes are now markdown. Documents WIP
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user