11 lines
126 B
Protocol Buffer
11 lines
126 B
Protocol Buffer
|
package My;
|
||
|
|
||
|
enum MyEnum {
|
||
|
ONE = 1;
|
||
|
TWO = 2;
|
||
|
}
|
||
|
|
||
|
message Test {
|
||
|
required MyEnum num = 1 [default=ONE];
|
||
|
}
|