Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created August 18, 2022 11:31
Show Gist options
  • Save bjoerntx/2db4bb38af751ad8cb8c766ce7025df6 to your computer and use it in GitHub Desktop.
Save bjoerntx/2db4bb38af751ad8cb8c766ce7025df6 to your computer and use it in GitHub Desktop.
public class SignatureData {
public SignatureDocument SignedDocument { get; set; }
public string DocumentName { get; set; }
public string SignatureImage { get; set; }
public string Name { get; set; }
public string Initials { get; set; }
public double InitialsWidth { get; set; }
public string UniqueId { get; set; }
public string SignatureBoxName { get; set; }
public SignatureBox[] SignatureBoxes { get; set; }
public string DocumentData { get; set; }
public object CustomSignatureData { get; set; }
public List<CompletedFormField> FormFields { get; set; } = new List<CompletedFormField>();
public string RedirectUrl { get; set; }
public bool CustomSigning { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment