ln.application/StaticArgumentAttribute.cs

16 lines
306 B
C#
Raw Normal View History

2020-11-18 00:04:57 +01:00
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()
{}
}
}