Files
FileTime2/src/Core/FileTime.Core.Abstraction/Timeline/ICommandScheduler.cs

8 lines
188 B
C#

using FileTime.Core.Command;
namespace FileTime.Core.Timeline;
public interface ICommandScheduler
{
Task AddCommand(ICommand command, int? batchId = null, bool toNewBatch = false);
}