8 lines
256 B
C#
8 lines
256 B
C#
using AMREZ.EOP.Contracts.DTOs.Authentications.LogoutAll;
|
|
|
|
namespace AMREZ.EOP.Abstractions.Applications.UseCases.Authentications;
|
|
|
|
public interface ILogoutAllUseCase
|
|
{
|
|
Task<int> ExecuteAsync(LogoutAllRequest request, CancellationToken ct = default);
|
|
} |