I need to create an Enum in a proto3 file, and it needs to has the following strings as options:
"0,01_200", "200,01_500", "500,01_1.000", "1.000,01_3.000", "3.000,01_10.000", 10.000,01_30.000, "30.000,01_100.000"
I tried something like this:
enum enumRangeTransactionCategory {
0,01_200 = 0;
200,01_500 = 1;
500,01_1.000 = 2;
1.000,01_3.000 = 3;
3.000,01_10.000 = 4;
10.000,01_30.000 = 5;
30.000,01_100.000 = 6;
}
But did not work.
Could anyone help me?