14 lines
No EOL
302 B
C#
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; }
|
|
}
|
|
} |