mirror of
https://github.com/nsnail/dot.git
synced 2025-06-17 21:13:21 +08:00
8 lines
269 B
C#
8 lines
269 B
C#
namespace Dot.Text;
|
|
|
|
[Verb("text", HelpText = nameof(Strings.HelpForText), ResourceType = typeof(Strings))]
|
|
public class Option : IOption
|
|
{
|
|
[Value(0, HelpText = nameof(Strings.HelpForTextArg0), ResourceType = typeof(Strings))]
|
|
public string Text { get; set; }
|
|
} |