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

14 lines
No EOL
302 B
C#

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