summaryrefslogtreecommitdiffstats
path: root/common/metadata.fbs
blob: 1455238bbde0249cd424ec5b2e473c301fbb8e54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Akonadi2;

enum Operation : byte { Creation = 1, Modification, Removal }

table Metadata {
    revision: ulong;
    processed: bool = true;
    processingProgress: [string];
    operation: Operation = Modification;
}

root_type Metadata;