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; } }