mirror of
https://github.com/nsnail/dot.git
synced 2025-06-17 21:13:21 +08:00
12 lines
271 B
C#
12 lines
271 B
C#
// ReSharper disable ClassNeverInstantiated.Global
|
|
|
|
|
|
namespace Dot.Text;
|
|
|
|
internal class Option : OptionBase
|
|
{
|
|
[CommandArgument(0, "[input text]")]
|
|
[Description(nameof(Str.TextTobeProcessed))]
|
|
[Localization(typeof(Str))]
|
|
public string Text { get; set; }
|
|
} |