PalacePal/Pal.Client/Commands/ISubCommand.cs

10 lines
180 B
C#
Raw Normal View History

2023-02-24 23:55:48 +00:00
using System;
using System.Collections.Generic;
2023-03-30 20:01:43 +00:00
namespace Pal.Client.Commands;
public interface ISubCommand
2023-02-24 23:55:48 +00:00
{
2023-03-30 20:01:43 +00:00
IReadOnlyDictionary<string, Action<string>> GetHandlers();
2023-02-24 23:55:48 +00:00
}