Warning, /pim/sink/common/domain/todo.fbs is written in an unsupported language. File is not indexed.

0001 namespace Sink.ApplicationDomain.Buffer;
0002 
0003 table Todo {
0004   uid:string;
0005   summary:string;
0006   description:string;
0007   completedDate:string;
0008   dueDate:string;
0009   startDate:string;
0010   status:string;
0011   priority:int;
0012   categories:[string];
0013   ical:string;
0014   calendar:string;
0015   parentUid:string;
0016 }
0017 
0018 root_type Todo;
0019 file_identifier "AKFB";