Command refactor
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using FileTime.Core.Models;
|
||||
|
||||
namespace FileTime.App.Core.UserCommand;
|
||||
|
||||
public class OpenContainerCommand : IUserCommand
|
||||
{
|
||||
public IAbsolutePath Path { get; }
|
||||
|
||||
private OpenContainerCommand(IAbsolutePath path)
|
||||
{
|
||||
Path = path;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user