17 lines
297 B
Protocol Buffer
17 lines
297 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package bet.beteran.api.game;
|
|
|
|
message Game {
|
|
uint64 id = 1;
|
|
uint64 parent_id = 2;
|
|
string key = 3;
|
|
string names = 4;
|
|
string platform = 5;
|
|
string category = 6;
|
|
string game_type = 7;
|
|
optional string image = 8;
|
|
uint64 created_at = 9;
|
|
uint64 updated_at = 10;
|
|
}
|