From 9383a2fb09ffb60cfe63683106945bd688affa59 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Wed, 1 Jun 2022 21:13:43 +0200 Subject: feat: Initial commit after clean slate --- src/Data/Database/Document.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/Data/Database/Document.cs (limited to 'src/Data/Database/Document.cs') diff --git a/src/Data/Database/Document.cs b/src/Data/Database/Document.cs new file mode 100644 index 0000000..2ae40d6 --- /dev/null +++ b/src/Data/Database/Document.cs @@ -0,0 +1,9 @@ +using VSH.Data.Enums; + +namespace VSH.Data.Database; + +public class Document : Base +{ + public DocumentType Type { get; set; } + public string Content { get; set; } +} \ No newline at end of file -- cgit v1.3