14 lines
183 B
Protocol Buffer
14 lines
183 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package Sample;
|
||
|
|
||
|
enum Colors {
|
||
|
red = 0;
|
||
|
blue = 1;
|
||
|
black = 2;
|
||
|
yellow = 3;
|
||
|
green = 4;
|
||
|
dark = 5;
|
||
|
white = 6;
|
||
|
gray = 7;
|
||
|
orange = 8;
|
||
|
}
|