summaryrefslogtreecommitdiffstats
path: root/server/src/Data/Database/TodoLabel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/Data/Database/TodoLabel.cs')
-rw-r--r--server/src/Data/Database/TodoLabel.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/server/src/Data/Database/TodoLabel.cs b/server/src/Data/Database/TodoLabel.cs
new file mode 100644
index 0000000..7753ade
--- /dev/null
+++ b/server/src/Data/Database/TodoLabel.cs
@@ -0,0 +1,8 @@
+namespace IOL.GreatOffice.Api.Data.Database;
+
+public class TodoLabel : BaseWithOwner
+{
+ public string Name { get; set; }
+ public string Color { get; set; }
+ public Todo Todo { get; set; }
+}