summaryrefslogtreecommitdiffstats
path: root/common/domain/todo.fbs
blob: b448cae12bbfd4b1ae85bc035687e115566042c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Sink.ApplicationDomain.Buffer;

table Todo {
  uid:string;
  summary:string;
  description:string;
  completedDate:string;
  dueDate:string;
  startDate:string;
  status:string;
  priority:int;
  categories:[string];
  ical:string;
  calendar:string;
}

root_type Todo;
file_identifier "AKFB";