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

table Event {
  uid:string;
  summary:string;
  description:string;
  startTime:string;
  endTime:string;
  allDay:bool = false;
  recurring:bool = false;
  ical:string;
  calendar:string;
}

root_type Event;
file_identifier "AKFB";