11 lines
191 B
C#
11 lines
191 B
C#
namespace EnvelopeGenerator.Domain.Interfaces
|
|
{
|
|
public interface ISignature
|
|
{
|
|
int Page { get; set; }
|
|
|
|
double X { get; set; }
|
|
|
|
double Y { get; set; }
|
|
}
|
|
} |