14 lines
200 B
Plaintext
14 lines
200 B
Plaintext
|
/*
|
||
|
struct CommandLine {
|
||
|
[Option]
|
||
|
bool? Option;
|
||
|
[Option]
|
||
|
int? Width;
|
||
|
[Option]
|
||
|
TypeCode Code;
|
||
|
[Values]
|
||
|
string[] Values;
|
||
|
}
|
||
|
*/
|
||
|
|