PhoneToolMX/PhoneToolMX.Models/HeaderAttribute.cs
2023-10-17 21:55:10 -07:00

17 lines
413 B
C#

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() {}
}
}