dot/src/Text/Option.cs
2022-12-01 11:29:39 +08:00

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; }
}