server-master/srcs/WingsAPI.Communication/Sessions/Request/ConnectCharacterRequest.cs
2026-02-10 18:21:30 +01:00

17 lines
No EOL
356 B
C#

using ProtoBuf;
namespace WingsAPI.Communication.Sessions.Request
{
[ProtoContract]
public class ConnectCharacterRequest
{
[ProtoMember(1)]
public long AccountId { get; init; }
[ProtoMember(2)]
public int ChannelId { get; init; }
[ProtoMember(3)]
public long CharacterId { get; init; }
}
}