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

12 lines
198 B
Protocol Buffer

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