mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
38 lines
497 B
Protocol Buffer
38 lines
497 B
Protocol Buffer
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
syntax = "proto3";
|
|
|
|
option java_multiple_files = true;
|
|
|
|
package anki.generic;
|
|
|
|
message Empty {}
|
|
|
|
message Int32 {
|
|
sint32 val = 1;
|
|
}
|
|
|
|
message UInt32 {
|
|
uint32 val = 1;
|
|
}
|
|
|
|
message Int64 {
|
|
int64 val = 1;
|
|
}
|
|
|
|
message String {
|
|
string val = 1;
|
|
}
|
|
|
|
message Json {
|
|
bytes json = 1;
|
|
}
|
|
|
|
message Bool {
|
|
bool val = 1;
|
|
}
|
|
|
|
message StringList {
|
|
repeated string vals = 1;
|
|
}
|