namespace UglyToad.PdfPig.AcroForms
{
using System;
///
/// Specifies document level characteristics for any signature fields in the document's .
///
[Flags]
internal enum SignatureFlags
{
///
/// The document contains at least one signature field.
///
SignaturesExist = 1 << 0,
///
/// The document contains signatures which may be invalidated if the file is saved
/// in a way which alters its previous content rather than simply appending new content.
///
AppendOnly = 1 << 1
}
}