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

11 lines
No EOL
212 B
C#

using ProtoBuf;
namespace WingsAPI.Communication.Player
{
[ProtoContract]
public class ClusterCharacterByIdRequest
{
[ProtoMember(1)]
public long CharacterId { get; init; }
}
}