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

package whirl;

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