WeChatFerry/clients/rust/wcferry/proto/roomdata.proto
2024-04-24 23:36:55 +08:00

22 lines
388 B
Protocol Buffer
Vendored

syntax = "proto3";
package roomdata;
message RoomData {
message RoomMember {
string wxid = 1;
string name = 2;
int32 state = 3;
}
repeated RoomMember members = 1;
int32 field_2 = 2;
int32 field_3 = 3;
int32 field_4 = 4;
int32 room_capacity = 5;
int32 field_6 = 6;
int64 field_7 = 7 [jstype = JS_STRING];
int64 field_8 = 8 [jstype = JS_STRING];
}