beteran-protobuf/proto/models/account/bank.proto
2022-08-12 06:42:07 +00:00

14 lines
218 B
Protocol Buffer

syntax = "proto3";
package bet.beteran.account;
message Bank {
string id = 1;
string name = 2;
bool show = 3;
bool can_use = 4;
optional string memo = 5;
uint64 created_at = 6;
uint64 updated_at = 7;
}