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

9 lines
212 B
C#

namespace VAR.PdfTools.PdfElements
{
public class PdfReal : IPdfElement
{
public PdfElementTypes Type { get { return PdfElementTypes.Real; } }
public double Value { get; set; }
}
}