8 lines
No EOL
223 B
C#
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);
|
|
} |