9 lines
215 B
C#
9 lines
215 B
C#
using FileTime.App.Core.Command;
|
|
|
|
namespace FileTime.App.Core.Services;
|
|
|
|
public interface ICommandHandler
|
|
{
|
|
bool CanHandleCommand(Command.Command command);
|
|
Task HandleCommandAsync(Command.Command command);
|
|
} |