namespace API.DTOs.Account; #nullable enable public class LoginDto { public string Username { get; init; } = default!; public string Password { get; set; } = default!; /// /// If ApiKey is passed, will ignore username/password for validation /// public string? ApiKey { get; set; } = default!; }