blob: 0a709fe2780e7554020e6f36dc21a570f3d6cd25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
namespace Akonadi2;
enum Operation : byte { Creation = 1, Modification, Removal }
table Metadata {
revision: ulong;
replayToSource: bool = true;
operation: Operation = Modification;
}
root_type Metadata;
|