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

21 lines
No EOL
471 B
C#

using ProtoBuf;
using WingsEmu.DTOs.Account;
namespace WingsAPI.Communication.Sessions.Request
{
[ProtoContract]
public class CreateSessionRequest
{
[ProtoMember(1)]
public long AccountId { get; init; }
[ProtoMember(2)]
public string AccountName { get; init; }
[ProtoMember(3)]
public AuthorityType AuthorityType { get; init; }
[ProtoMember(4)]
public string IpAddress { get; init; }
}
}