femto-backend/Femto.Modules.Auth/Application/IAuthModule.cs
2025-05-16 16:10:01 +02:00

8 lines
No EOL
223 B
C#

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