namespace Fluent.Localization { using System; /// /// Attribute class providing informations about a localization /// [AttributeUsage(AttributeTargets.Class)] public sealed class RibbonLocalizationAttribute : Attribute { /// /// Creates a new instance. /// /// Specifies the display name. /// Specifies the culture name. public RibbonLocalizationAttribute(string displayName, string cultureName) { this.DisplayName = displayName; this.CultureName = cultureName; } /// /// Gets the display name. /// public string DisplayName { get; } /// /// Gets the culture name. /// public string CultureName { get; } } }