CreateElement

This commit is contained in:
2022-05-24 14:22:33 +02:00
parent 90cb345f96
commit dcff003c28
8 changed files with 201 additions and 105 deletions

View File

@@ -0,0 +1,13 @@
namespace FileTime.App.Core.UserCommand;
public sealed class CreateElement : IIdentifiableUserCommand
{
public const string CommandName = "create_element";
public static CreateElement Instance { get; } = new CreateElement();
private CreateElement()
{
}
public string UserCommandID => CommandName;
}