mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-03 13:28:30 +08:00
10 lines
166 B
C#
10 lines
166 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Mhf.Cli.Argument
|
|
{
|
|
public interface ISwitchConsumer
|
|
{
|
|
List<ISwitchProperty> Switches { get; }
|
|
}
|
|
}
|