Files
FileTime2/src/AppCommon/FileTime.App.Core.Abstraction/UserCommand/CopyNativePathCommand.cs

15 lines
371 B
C#

namespace FileTime.App.Core.UserCommand;
public sealed class CopyNativePathCommand : IIdentifiableUserCommand
{
public const string CommandName = "copy_path";
public static CopyNativePathCommand Instance { get; } = new();
private CopyNativePathCommand()
{
}
public string UserCommandID => CommandName;
public string Title => "Copy path";
}