Files
VAR.PdfTools/VAR.PdfTools/PdfElements/PdfBoolean.cs
2017-06-27 01:03:27 +02:00

9 lines
216 B
C#

namespace VAR.PdfTools.PdfElements
{
public class PdfBoolean : IPdfElement
{
public PdfElementTypes Type { get { return PdfElementTypes.Boolean; } }
public bool Value { get; set; }
}
}