11 lines
No EOL
224 B
C#
11 lines
No EOL
224 B
C#
using ProtoBuf;
|
|
|
|
namespace WingsAPI.Communication.Sessions.Request
|
|
{
|
|
[ProtoContract]
|
|
public class GetSessionByAccountNameRequest
|
|
{
|
|
[ProtoMember(1)]
|
|
public string AccountName { get; init; }
|
|
}
|
|
} |