12 lines
No EOL
263 B
C#
12 lines
No EOL
263 B
C#
using ProtoBuf;
|
|
using WingsAPI.Data.Account;
|
|
|
|
namespace WingsAPI.Communication.DbServer.AccountService
|
|
{
|
|
[ProtoContract]
|
|
public class AccountBanSaveRequest
|
|
{
|
|
[ProtoMember(1)]
|
|
public AccountBanDto AccountBanDto { get; init; }
|
|
}
|
|
} |