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

11 lines
No EOL
208 B
C#

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