mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-03 13:28:30 +08:00
11 lines
223 B
C#
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);
|
|
}
|
|
}
|