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() {} } }