2025-09-25 16:14:59 +02:00

11 lines
191 B
C#

namespace EnvelopeGenerator.Domain.Interfaces
{
public interface ISignature
{
int Page { get; set; }
double X { get; set; }
double Y { get; set; }
}
}