server-master/srcs/WingsAPI.Communication/Player/ClusterCharacterResponse.cs
2026-02-10 18:21:30 +01:00

14 lines
No EOL
319 B
C#

using ProtoBuf;
namespace WingsAPI.Communication.Player
{
[ProtoContract]
public class ClusterCharacterResponse
{
[ProtoMember(1)]
public RpcResponseType ResponseType { get; init; }
[ProtoMember(2)]
public ClusterCharacterInfo ClusterCharacterInfo { get; init; }
}
}