propresenter-php/php/proto/intRange.proto
2026-03-01 16:12:17 +01:00

14 lines
228 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_";
message IntRange {
int32 start = 1;
int32 end = 2;
}