11 lines
No EOL
221 B
C#
11 lines
No EOL
221 B
C#
using ProtoBuf;
|
|
|
|
namespace WingsAPI.Communication.DbServer.AccountService
|
|
{
|
|
[ProtoContract]
|
|
public class AccountLoadByNameRequest
|
|
{
|
|
[ProtoMember(1)]
|
|
public string Name { get; init; }
|
|
}
|
|
} |