summaryrefslogtreecommitdiffstats
path: root/common/domain/todo.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'common/domain/todo.fbs')
-rw-r--r--common/domain/todo.fbs18
1 files changed, 18 insertions, 0 deletions
diff --git a/common/domain/todo.fbs b/common/domain/todo.fbs
new file mode 100644
index 0000000..b448cae
--- /dev/null
+++ b/common/domain/todo.fbs
@@ -0,0 +1,18 @@
1namespace Sink.ApplicationDomain.Buffer;
2
3table Todo {
4 uid:string;
5 summary:string;
6 description:string;
7 completedDate:string;
8 dueDate:string;
9 startDate:string;
10 status:string;
11 priority:int;
12 categories:[string];
13 ical:string;
14 calendar:string;
15}
16
17root_type Todo;
18file_identifier "AKFB";