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

15 lines
238 B
Protocol Buffer

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