blob: 2b7d2ac8886c89f403d82b73cd88cfe8e5073cf5 [file] [log] [blame]
package SyncDemo;
message ChatMessage {
required string to = 1;
required string from = 2;
enum ChatMessageType {
CHAT = 0;
HELLO = 1;
OTHER = 2;
}
required ChatMessageType type = 3 [default = CHAT];
optional string data = 4;
optional int32 timestamp = 5;
}