beteran-protobuf/proto/models/member_bank_account.proto
2022-08-13 20:18:21 +00:00

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;
}