Hideout/owl/owl-broker/src/main/proto/property.proto

13 lines
233 B
Protocol Buffer

syntax = "proto3";
import "google/protobuf/empty.proto";
option java_package = "dev.usbharu.owl.generated";
message Property{
oneof value {
google.protobuf.Empty empty = 1;
string string = 2;
int32 integer = 3;
}
}