10 lines
236 B
C#
10 lines
236 B
C#
namespace Catalog.Communication.Models;
|
|
|
|
public sealed class AdminLoginRequest
|
|
{
|
|
public required string Login { get; init; }
|
|
|
|
public required string Password { get; init; }
|
|
|
|
public string Command { get; init; } = "check";
|
|
}
|