beteran-protobuf/proto/models/member_balance.proto

14 lines
249 B
Protocol Buffer
Raw Normal View History

2022-09-16 14:17:16 +00:00
syntax = "proto3";
package bet.beteran.member_balance;
message MemberBalance {
string id = 1;
string member_id = 2;
double balance = 3;
double balance_bota = 4;
double balance_sum = 5;
uint64 created_at = 6;
uint64 updated_at = 7;
}