WIP
This commit is contained in:
25
src/Core/FileTime.Core.Command/Delete/DeleteCommand.cs
Normal file
25
src/Core/FileTime.Core.Command/Delete/DeleteCommand.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using FileTime.Core.Models;
|
||||
using FileTime.Core.Timeline;
|
||||
|
||||
namespace FileTime.Core.Command.Delete;
|
||||
|
||||
public class DeleteCommand : IExecutableCommand
|
||||
{
|
||||
public bool HardDelete { get; init; }
|
||||
public List<FullName> ItemsToDelete { get; } = new List<FullName>();
|
||||
|
||||
public Task<CanCommandRun> CanRun(PointInTime currentTime)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<PointInTime> SimulateCommand(PointInTime currentTime)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task Execute()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user