18 lines
359 B
Protocol Buffer
18 lines
359 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package bet.beteran.member_game_setting;
|
||
|
|
||
|
|
||
|
message MemberGameSetting {
|
||
|
string id = 1;
|
||
|
string member_id = 2;
|
||
|
bool can_bet_casino = 3;
|
||
|
bool can_bet_slot = 4;
|
||
|
bool can_bet_powerball = 5;
|
||
|
bool can_bet_powerladder = 6;
|
||
|
bool can_bet_eos = 7;
|
||
|
bool can_bet_bogglepowerball = 8;
|
||
|
uint64 created_at = 9;
|
||
|
uint64 updated_at = 10;
|
||
|
}
|