namespace Dalamud.Interface;
///
/// Set search terms associated with a font awesome icon.
///
public class FontAwesomeSearchTermsAttribute : Attribute
{
///
/// Initializes a new instance of the class.
///
/// search terms for enum member.
public FontAwesomeSearchTermsAttribute(string[] searchTerms) => this.SearchTerms = searchTerms;
///
/// Gets or sets search terms.
///
public string[] SearchTerms { get; set; }
}