using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Core.CustomAttributes { /// /// Represents an association of a xaml markup vector to with an enum field. /// /// [AttributeUsage(AttributeTargets.Field)] public class XamlVectorAttribute : Attribute { /// /// Gets or sets the xaml vector. /// public String XamlVector { get; set; } /// /// Initializes a new instance of the class. /// /// The xaml vector. public XamlVectorAttribute(String xamlVector) { XamlVector = xamlVector; } } }