Files
TechHelper/Entities/DTO/AuthResponseDto.cs
2025-05-23 19:03:00 +08:00

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