beteran-protobuf/proto/models/bank.proto

15 lines
240 B
Protocol Buffer
Raw Normal View History

2022-08-13 20:18:21 +00:00
syntax = "proto3";
package bet.beteran.bank;
message Bank {
string id = 1;
string name = 2;
2022-08-14 07:18:42 +00:00
uint32 sort_order = 3;
2022-08-13 20:18:21 +00:00
bool show = 4;
bool can_use = 5;
optional string memo = 6;
uint64 created_at = 7;
uint64 updated_at = 8;
}