forked from projectmoon/tenebrous-dicebot
12 lines
234 B
Protocol Buffer
12 lines
234 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package examplecom;
|
||
|
|
||
|
message CasingMessage {
|
||
|
string TitleCase = 1;
|
||
|
string camelCase = 2;
|
||
|
string snake_case = 3;
|
||
|
string _leadingUnderscoreCamelCase = 4;
|
||
|
string _LeadingUnderscoreTitleCase = 5;
|
||
|
}
|