mirror of
https://github.com/UglyToad/PdfPig.git
synced 2025-09-21 04:17:57 +08:00
12 lines
359 B
C#
12 lines
359 B
C#
namespace UglyToad.PdfPig.AcroForms.Fields
|
|
{
|
|
using Tokens;
|
|
|
|
internal class AcroSignatureField : AcroFieldBase
|
|
{
|
|
public AcroSignatureField(DictionaryToken dictionary, string fieldType, uint fieldFlags, AcroFieldCommonInformation information) :
|
|
base(dictionary, fieldType, fieldFlags, information)
|
|
{
|
|
}
|
|
}
|
|
} |