14 lines
No EOL
321 B
C#
14 lines
No EOL
321 B
C#
using ProtoBuf;
|
|
|
|
namespace WingsAPI.Communication.ServerApi.Protocol
|
|
{
|
|
[ProtoContract]
|
|
public class GetChannelInfoResponse
|
|
{
|
|
[ProtoMember(1)]
|
|
public RpcResponseType ResponseType { get; init; }
|
|
|
|
[ProtoMember(2)]
|
|
public SerializableGameServer GameServer { get; init; }
|
|
}
|
|
} |