8 lines
170 B
C#
8 lines
170 B
C#
using FileTime.App.Core.Command;
|
|
|
|
namespace FileTime.App.Core.Services;
|
|
|
|
public interface ICommandHandlerService
|
|
{
|
|
Task HandleCommandAsync(Command.Command command);
|
|
} |