femto-backend/Femto.Modules.Auth/Application/IAuthenticationModule.cs
2025-05-14 23:53:00 +02:00

8 lines
No EOL
233 B
C#

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