21 lines
330 B
Protocol Buffer
21 lines
330 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package ru.m.puzzlez.proto.core;
|
|
|
|
message UserProto {
|
|
string uuid = 1;
|
|
string name = 2;
|
|
}
|
|
|
|
message GameProto {
|
|
int32 id = 1;
|
|
string imageId = 2;
|
|
string status = 3;
|
|
repeated UserProto users = 4;
|
|
}
|
|
|
|
message GameEventProto {
|
|
int32 time = 1;
|
|
string event = 2;
|
|
}
|