add times to get game

This commit is contained in:
2026-08-04 01:23:01 +07:00
parent ae3a8c809f
commit f3ac19ed83
9 changed files with 159 additions and 104 deletions
+9 -7
View File
@@ -780,13 +780,15 @@ message GetGamesRsp {
}
message Game {
int32 id = 1;
string name = 2;
string description = 3;
google.protobuf.Timestamp start_at = 4;
string status = 5;
Scenario scenario = 6;
repeated Team teams = 7;
int32 id = 1;
string name = 2;
string description = 3;
google.protobuf.Timestamp start_at = 4;
string status = 5;
Scenario scenario = 6;
repeated Team teams = 7;
optional google.protobuf.Timestamp started_at = 8;
optional google.protobuf.Timestamp ended_at = 9;
}
message Team {