14 lines
222 B
Protocol Buffer
Executable file
14 lines
222 B
Protocol Buffer
Executable file
syntax = "proto3";
|
|
|
|
package rv.data;
|
|
|
|
option cc_enable_arenas = true;
|
|
option csharp_namespace = "Pro.SerializationInterop.RVProtoData";
|
|
option swift_prefix = "RVData_";
|
|
|
|
enum API_v1_ContentType {
|
|
PNG = 0;
|
|
JPEG = 1;
|
|
}
|
|
|