13 lines
323 B
C#
13 lines
323 B
C#
namespace FileTime.App.Core.UserCommand;
|
|
|
|
public class CopyNativePathCommand : IIdentifiableUserCommand
|
|
{
|
|
public const string CommandName = "copy_path";
|
|
public static CopyNativePathCommand Instance { get; } = new();
|
|
|
|
private CopyNativePathCommand()
|
|
{
|
|
}
|
|
|
|
public string UserCommandID => CommandName;
|
|
} |