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

11 lines
223 B
C#

namespace Mhf.Cli.Argument
{
public interface ISwitchProperty
{
string Key { get; }
string Description { get; }
string ValueDescription { get; }
bool Assign(string value);
}
}