26 lines
982 B
C#
26 lines
982 B
C#
using FileTime.App.Core.Models.Enums;
|
|
|
|
namespace FileTime.App.Core.UserCommand;
|
|
|
|
public sealed class PasteCommand : IIdentifiableUserCommand
|
|
{
|
|
public const string PasteMergeCommandName = "paste_merge";
|
|
public const string PasteOverwriteCommandName = "paste_overwrite";
|
|
public const string PasteSkipCommandName = "paste_skip";
|
|
|
|
public static readonly PasteCommand Merge = new(PasteMode.Merge, PasteMergeCommandName, "Paste (merge)");
|
|
public static readonly PasteCommand Overwrite = new(PasteMode.Overwrite, PasteOverwriteCommandName, "Paste (overwrite)");
|
|
public static readonly PasteCommand Skip = new(PasteMode.Skip, PasteSkipCommandName, "Paste (skip)");
|
|
|
|
public PasteMode PasteMode { get; }
|
|
|
|
private PasteCommand(PasteMode pasteMode, string commandName, string title)
|
|
{
|
|
PasteMode = pasteMode;
|
|
UserCommandID = commandName;
|
|
Title = title;
|
|
}
|
|
|
|
public string UserCommandID { get; }
|
|
public string Title { get; }
|
|
} |