beteran-protobuf/proto/models/member_class.proto
2022-08-14 15:08:04 +00:00

13 lines
215 B
Protocol Buffer

syntax = "proto3";
package bet.beteran.member_class;
message MemberClass {
string id = 1;
optional string parent_id = 2;
string name = 3;
bool show = 4;
uint64 created_at = 5;
uint64 updated_at = 6;
}