13 lines
249 B
C#
13 lines
249 B
C#
using FileTime.Core.Models;
|
|
|
|
namespace FileTime.App.Core.UserCommand;
|
|
|
|
public class OpenContainerCommand : IUserCommand
|
|
{
|
|
public IAbsolutePath Path { get; }
|
|
|
|
private OpenContainerCommand(IAbsolutePath path)
|
|
{
|
|
Path = path;
|
|
}
|
|
} |