15 lines
281 B
Protocol Buffer
15 lines
281 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package bet.beteran.member_bank_account;
|
||
|
|
||
|
message MemberBankAccount {
|
||
|
string id = 1;
|
||
|
string member_id = 2;
|
||
|
string bank_id = 3;
|
||
|
string name = 4;
|
||
|
string account_number = 5;
|
||
|
optional string memo = 6;
|
||
|
uint64 created_at = 7;
|
||
|
uint64 updated_at = 8;
|
||
|
}
|