refactor(ISignature): create to handle common properties of a signature

- implement to entity and dto
This commit is contained in:
2025-09-25 16:14:59 +02:00
parent 94ce416aa1
commit bf0bd8e9e7
4 changed files with 27 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
namespace EnvelopeGenerator.Domain.Interfaces
{
public interface ISignature
{
int Page { get; set; }
double X { get; set; }
double Y { get; set; }
}
}