feat: store the result at each stage

This commit is contained in:
nikita
2024-12-26 14:18:12 +03:00
parent 36026b3afb
commit 157708d00f
2 changed files with 51 additions and 6 deletions

View File

@ -0,0 +1,9 @@
namespace Mirea.Api.Security.Common.Domain.Caching;
internal class OAuthUserExtension
{
public string? Message { get; set; }
public bool IsSuccess { get; set; }
public required OAuthProvider? Provider { get; set; }
public OAuthUser? User { get; set; }
}