using EnvelopeGenerator.ReceiverUI.Models.Constants;
namespace EnvelopeGenerator.ReceiverUI.Models;
///
/// Represents a signature position on a PDF page.
/// Coordinates stored in INCHES (GdPicture14 native unit).
/// Origin: Top-left corner, X increases right, Y increases down.
///
public class SignatureDto
{
/// Unique identifier.
public int Id { get; set; }
/// Horizontal position in INCHES from left edge.
public double X { get; set; }
/// Vertical position in INCHES from top edge.
public double Y { get; set; }
/// 1-based page number.
public int Page { get; set; }
public SenderAppType SenderAppType { get; set; }
}