Files
MireaBackend/Security/Common/Domain/LoginOAuthResult.cs
Polianin Nikita 43edab2912
All checks were successful
.NET Test Pipeline / build-and-test (push) Successful in 2m0s
Build and Deploy Docker Container / build-and-deploy (push) Successful in 2m53s
sec: return the token instead of performing actions with the user
2024-12-26 08:51:22 +03:00

11 lines
266 B
C#

using System;
namespace Mirea.Api.Security.Common.Domain;
public class LoginOAuthResult
{
public bool Success { get; set; }
public required string Token { get; set; }
public Uri? Callback { get; set; }
public string? ErrorMessage { get; set; }
}