Class LoginResponseDto
- Namespace
- KadicAuth.Application.Auth.DTOs
- Assembly
- KadicAuth.Application.dll
public sealed record LoginResponseDto
- Inheritance
-
object
LoginResponseDto
Constructors
LoginResponseDto(string, string, int, string?)
public LoginResponseDto(string AccessToken, string TokenType, int ExpiresIn, string? RefreshToken = null)
Parameters
AccessToken string
TokenType string
ExpiresIn int
RefreshToken string
Properties
AccessToken
public string AccessToken { get; init; }
Property Value
- string
ExpiresIn
public int ExpiresIn { get; init; }
Property Value
- int
RefreshToken
public string? RefreshToken { get; init; }
Property Value
- string
TokenType
public string TokenType { get; init; }
Property Value
- string