重构项目结构,移除Assignment相关功能,优化Submission模块
Some checks failed
TechAct / explore-gitea-actions (push) Failing after 12s
Some checks failed
TechAct / explore-gitea-actions (push) Failing after 12s
This commit is contained in:
12
Entities/DTO/Authentication/AuthResponseDto.cs
Normal file
12
Entities/DTO/Authentication/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