summaryrefslogtreecommitdiff
path: root/src/DTS/Todo.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/DTS/Todo.php')
-rw-r--r--src/DTS/Todo.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/DTS/Todo.php b/src/DTS/Todo.php
new file mode 100644
index 0000000..9b08e56
--- /dev/null
+++ b/src/DTS/Todo.php
@@ -0,0 +1,16 @@
+<?php
+
+declare(strict_types=1);
+
+namespace DTS;
+
+class Todo
+{
+ public int $id;
+
+ public string $task = '';
+
+ public string $tag = '';
+
+ public string $addedAt;
+}