17 lines
413 B
C#
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() {}
|
||
|
}
|
||
|
}
|