generated from egmont11/ASP.Net-Core-MVC-Template
InitEshop+ddd+ca
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
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 };
|
||||
}
|
||||
Reference in New Issue
Block a user