Refactor AdminContentProvider

This commit is contained in:
2023-08-24 10:37:04 +02:00
parent 5c62419f65
commit c2668d7270
27 changed files with 132 additions and 161 deletions

View File

@@ -0,0 +1,16 @@
namespace FileTime.App.Core.UserCommand;
public class AddRemoteContentProviderCommand : IIdentifiableUserCommand
{
public const string CommandName = "add_remote_content_provider";
public static AddRemoteContentProviderCommand Instance { get; } = new();
private AddRemoteContentProviderCommand()
{
}
public string UserCommandID => CommandName;
public string Title => "Add Remote Content Provider";
}