Files
FileTime/src/FileTime.Core/Command/CreateElementCommand.cs
2022-01-06 18:36:25 +01:00

12 lines
258 B
C#

using FileTime.Core.Timeline;
namespace FileTime.Core.Command
{
public class CreateElementCommand : ICommand
{
public PointInTime SimulateCommand(PointInTime delta)
{
throw new NotImplementedException();
}
}
}