mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
11 lines
192 B
Protocol Buffer
11 lines
192 B
Protocol Buffer
syntax = 'proto3';
|
|
package Laana;
|
|
|
|
message Group {
|
|
string groupCode = 1;
|
|
string groupName = 2;
|
|
uint32 memberCount = 3;
|
|
uint32 maxMemberCount = 4;
|
|
|
|
optional string groupRemark = 11;
|
|
} |