:drunk: No idea what did AI did
This commit is contained in:
13
DysonNetwork.Pass/Features/Auth/Models/AuthResult.cs
Normal file
13
DysonNetwork.Pass/Features/Auth/Models/AuthResult.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using DysonNetwork.Common.Models;
|
||||
|
||||
namespace DysonNetwork.Pass.Features.Auth.Models;
|
||||
|
||||
public class AuthResult
|
||||
{
|
||||
public bool Success { get; set; }
|
||||
public string? AccessToken { get; set; }
|
||||
public string? RefreshToken { get; set; }
|
||||
public AuthSession? Session { get; set; }
|
||||
public string? Error { get; set; }
|
||||
public IEnumerable<string>? RequiredFactors { get; set; }
|
||||
}
|
Reference in New Issue
Block a user