14 lines
146 B
Cap'n Proto
14 lines
146 B
Cap'n Proto
@0xc4b1d8e2f3a7c906;
|
|
|
|
struct Person {
|
|
name @0 :Text;
|
|
age @1 :Int32;
|
|
email @2 :Text;
|
|
}
|
|
|
|
enum Gender {
|
|
male @0;
|
|
female @1;
|
|
other @2;
|
|
}
|