11 lines
198 B
C#
11 lines
198 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Pal.Client.Commands
|
|||
|
{
|
|||
|
public interface ISubCommand
|
|||
|
{
|
|||
|
IReadOnlyDictionary<string, Action<string>> GetHandlers();
|
|||
|
}
|
|||
|
}
|