generated from egmont11/ASP.Net-Core-MVC-Template
10 lines
272 B
C#
10 lines
272 B
C#
namespace Eshop.Application.Auth;
|
|
|
|
public sealed class SignInResultDto
|
|
{
|
|
public bool Succeeded { get; private init; }
|
|
|
|
public static SignInResultDto Success => new() { Succeeded = true };
|
|
public static SignInResultDto Failure => new() { Succeeded = false };
|
|
}
|