namespace PhoneToolMX.Models { [System.AttributeUsage(AttributeTargets.Property)] public class HeaderAttribute : System.Attribute { public string Title { get; set; } public bool Primary { get; set; } public bool Small { get; set; } public HeaderAttribute(string title) { Title = title; } public HeaderAttribute() {} } }