mhf-server/Mhf.Cli/Argument/ISwitchConsumer.cs
2019-11-24 19:43:35 +08:00

10 lines
166 B
C#

using System.Collections.Generic;
namespace Mhf.Cli.Argument
{
public interface ISwitchConsumer
{
List<ISwitchProperty> Switches { get; }
}
}