11 lines
317 B
C#
11 lines
317 B
C#
using FileTime.Core.Command;
|
|
using FileTime.Core.Models;
|
|
|
|
namespace FileTime.Core.Timeline;
|
|
|
|
public interface ICommandScheduler
|
|
{
|
|
Task AddCommand(ICommand command, int? batchId = null, bool toNewBatch = false);
|
|
IObservable<FullName> ContainerToRefresh { get; }
|
|
void RefreshContainer(FullName container);
|
|
} |