10 lines
260 B
C#
10 lines
260 B
C#
namespace Flawless.Communication.Authentication;
|
|
|
|
public record LoginRequest
|
|
{
|
|
public required string Identification { get; init; }
|
|
|
|
public required string Password { get; init; }
|
|
|
|
public required bool DontExpireHalfMonth { get; set; }
|
|
} |