mirror of
https://github.com/sebastian-heinz/mhf-server.git
synced 2025-04-04 22:28:26 +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);
|
|||
|
}
|
|||
|
}
|