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