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"; }