Rename Commands enum to Command

This commit is contained in:
2022-05-11 11:49:26 +02:00
parent ae66ff92ee
commit 0ee4025e00
13 changed files with 94 additions and 94 deletions

View File

@@ -4,6 +4,6 @@ namespace FileTime.App.Core.Services;
public interface ICommandHandler
{
bool CanHandleCommand(Commands command);
Task HandleCommandAsync(Commands command);
bool CanHandleCommand(Command.Command command);
Task HandleCommandAsync(Command.Command command);
}