syntax = "proto3"; package jenum; enum Color { RED = 0; BLUE = 1; } message Paint { Color c = 1; repeated Color cs = 2; }