mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-05-11 06:36:54 +00:00
27 lines
226 B
Protocol Buffer
27 lines
226 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
enum TestEnum1
|
|
{
|
|
A = 0;
|
|
B = 2;
|
|
C = -3;
|
|
}
|
|
|
|
enum TestEnum2
|
|
{
|
|
X = 0;
|
|
Y = 5;
|
|
}
|
|
|
|
message TestMsg
|
|
{
|
|
TestEnum1 test1 = 1;
|
|
|
|
oneof oneof1
|
|
{
|
|
TestEnum2 test2 = 2;
|
|
}
|
|
}
|
|
|
|
|