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

9 lines
216 B
C#

namespace VAR.PdfTools.PdfElements
{
public class PdfInteger : IPdfElement
{
public PdfElementTypes Type { get { return PdfElementTypes.Integer; } }
public long Value { get; set; }
}
}