aboutsummaryrefslogtreecommitdiff
path: root/Net2Property.proto
blob: 523b17b4f4cb35909efe2c9a452f7ee5f09ced52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
syntax = "proto3";

package whirl;

message Net2Property {
  int32 prop_id = 1;
  int32 flags = 2;
  int32 access = 3;
  oneof value {
    string string_value = 4;
    bytes binary_value = 5;
  }
}