添加项目文件。
This commit is contained in:
12
Entities/DTO/AuthResponseDto.cs
Normal file
12
Entities/DTO/AuthResponseDto.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user