9 lines
217 B
C#
9 lines
217 B
C#
using FileTime.App.Core.UserCommand;
|
|
|
|
namespace FileTime.App.Core.Services;
|
|
|
|
public interface IUserCommandHandler
|
|
{
|
|
bool CanHandleCommand(IUserCommand command);
|
|
Task HandleCommandAsync(IUserCommand command);
|
|
} |