Files
aspnet-microservice-template/Models/DTO/LoginResultResponse.cs

10 lines
267 B
C#
Executable File

namespace GamificationService.Models.DTO;
public class LoginResultResponse
{
public bool? RequiresTwoFactorAuth { get; set; }
public bool Success { get; set; }
public RefreshTokenDTO? Token { get; set; }
public int? TwoFactorProvider { get; set; }
}