ProtobufTest/Tools/protogen--net8.0/ProtoConfig/Network.proto

20 lines
399 B
Protocol Buffer
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

syntax = "proto3";
//指定命名空间可选参数如果没有则使用C#代码的命名空间。
option csharp_namespace = "ZGame";
//ResponseType G2R_GetLoginKey
message C2S_Login // IActorRequest
{
string RequestKey = 1;
string Info = 2;
string LabelName = 3;
string Token = 4;
}
message S2C_Login // IActorResponse
{
string Code = 1;
string RequestKey = 2;
string Data = 3;
}