ln.application/StaticArgumentAttribute.cs

16 lines
306 B
C#

using System;
namespace ln.application
{
public class StaticArgumentAttribute : Attribute
{
public char Option { get; set; }
public string LongOption { get; set; }
public string HelpString { get; set; }
public StaticArgumentAttribute()
{}
}
}