PhoneToolMX/PhoneToolMX.Models/HeaderAttribute.cs

17 lines
413 B
C#
Raw Normal View History

2023-10-18 04:55:10 +00:00
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() {}
}
}