Refresh command
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
namespace FileTime.App.Core.UserCommand;
|
||||
|
||||
public sealed class RefreshCommand : IIdentifiableUserCommand
|
||||
{
|
||||
public const string CommandName = "refresh";
|
||||
public static RefreshCommand Instance { get; } = new RefreshCommand();
|
||||
|
||||
private RefreshCommand()
|
||||
{
|
||||
}
|
||||
|
||||
public string UserCommandID => CommandName;
|
||||
}
|
||||
Reference in New Issue
Block a user