// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// A Short Name for an enum value
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Attributes
{
using System;
///
/// A Short Name for an enum value
///
public class ShortName : Attribute
{
///
/// Initializes a new instance of the class.
///
///
/// The short name.
///
public ShortName(string shortName)
{
this.Name = shortName;
}
///
/// Gets or sets the short name.
///
public string Name { get; set; }
}
}