// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See License.md in the project root for license information.
using System;
namespace CommandLine.Text
{
///
/// Applied to a static property that yields a sequence of ,
/// provides data to render usage section of help screen.
///
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
public sealed class UsageAttribute : Attribute
{
///
/// Application name, script or any means that starts current program.
///
public string ApplicationAlias { get; set; }
}
}