Files
QuestPDF/QuestPDF/Elements/DebugPointer.cs
T
2021-09-07 00:32:51 +02:00

10 lines
207 B
C#

using System.ComponentModel;
namespace QuestPDF.Elements
{
internal class DebugPointer : Container
{
public string Target { get; set; }
public bool Highlight { get; set; }
}
}