femto-backend/Femto.Modules.Authentication/Application/IAuthenticationModule.cs
2025-05-12 09:33:07 +02:00

8 lines
No EOL
243 B
C#

using Femto.Common.Domain;
namespace Femto.Modules.Authentication.Application;
public interface IAuthenticationModule
{
Task<TResponse> PostCommand<TResponse>(ICommand<TResponse> command, CancellationToken cancellationToken = default);
}