beteran-protobuf/proto/models/member/member_class.proto

12 lines
192 B
Protocol Buffer
Raw Normal View History

2022-07-12 07:02:38 +00:00
syntax = "proto3";
package bet.beteran.member;
message MemberClass {
string id = 1;
2022-08-11 01:04:25 +00:00
optional string parent_id = 2;
2022-07-12 07:02:38 +00:00
string name = 3;
uint64 created_at = 4;
uint64 updated_at = 5;
}