Table of Contents

Class LoginCommand

Namespace
KadicAuth.Application.Auth.Commands.LoginCommands
Assembly
KadicAuth.Application.dll
public sealed record LoginCommand : IRequest<LoginResponseDto>, IBaseRequest
Inheritance
object
LoginCommand
Implements
IBaseRequest

Constructors

LoginCommand(string, string, string?, string?)

public LoginCommand(string Email, string Password, string? IpAddress = null, string? UserAgent = null)

Parameters

Email string
Password string
IpAddress string
UserAgent string

Properties

Email

public string Email { get; init; }

Property Value

string

IpAddress

public string? IpAddress { get; init; }

Property Value

string

Password

public string Password { get; init; }

Property Value

string

UserAgent

public string? UserAgent { get; init; }

Property Value

string