13 lines
336 B
C#
13 lines
336 B
C#
namespace Entities.DTO
|
|
{
|
|
public class AuthResponseDto
|
|
{
|
|
public bool IsAuthSuccessful { get; set; }
|
|
public string? ErrorMessage { get; set; }
|
|
public string? Token { get; set; }
|
|
public string? RefreshToken { get; set; }
|
|
public bool Is2StepVerificationRequired { get; set; }
|
|
public string Provider { get; set; }
|
|
}
|
|
}
|