11 lines
No EOL
222 B
C#
11 lines
No EOL
222 B
C#
using ProtoBuf;
|
|
|
|
namespace WingsAPI.Communication.DbServer.AccountService
|
|
{
|
|
[ProtoContract]
|
|
public class AccountLoadByIdRequest
|
|
{
|
|
[ProtoMember(1)]
|
|
public long AccountId { get; init; }
|
|
}
|
|
} |