Skip to content

Commit

Permalink
refactor: ♻️ fix field name for repeated
Browse files Browse the repository at this point in the history
  • Loading branch information
binsee committed Feb 23, 2024
1 parent c7c4313 commit 7ea65a5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions proto/wechaty/puppet/tag.proto
Original file line number Diff line number Diff line change
Expand Up @@ -67,26 +67,26 @@ message TagTagNewInfo {

message TagTagAddRequest {
string tag_group_id = 2;
repeated string tag_name_list = 3;
repeated string tag_name = 3;
}

message TagTagAddResponse {
repeated TagTagInfo tag_info_list = 2;
repeated TagTagInfo tag_info = 2;
}

message TagTagDeleteRequest {
repeated string tag_id_list = 2;
repeated string tag_id = 2;
}

message TagTagDeleteResponse {
}

message TagTagModifyRequest {
repeated TagTagNewInfo tag_new_info_list = 2;
repeated TagTagNewInfo tag_new_info = 2;
}

message TagTagModifyResponse {
repeated TagTagInfo tag_info_list = 2;
repeated TagTagInfo tag_info = 2;
}

message TagGroupListRequest {
Expand Down

0 comments on commit 7ea65a5

Please sign in to comment.