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