Refactor to use SignatureDto and SignatureService
Replaced AnnotationDto and AnnotationService with SignatureDto and SignatureService for handling signature data. Marked AnnotationDto and AnnotationService as obsolete. Added the SignatureDto class to represent signature data and introduced the SignatureService class to fetch signature data from the API. Updated EnvelopeViewer.razor to use SignatureService, replacing AnnotationService, and added a debug log for retrieved signatures. Performed general refactoring to align with the new signature data model and functionality.
This commit is contained in:
13
EnvelopeGenerator.ReceiverUI/Models/SignatureDto.cs
Normal file
13
EnvelopeGenerator.ReceiverUI/Models/SignatureDto.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace EnvelopeGenerator.ReceiverUI.Models;
|
||||
|
||||
public class SignatureDto
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public double X { get; set; }
|
||||
|
||||
public double Y { get; set; }
|
||||
|
||||
public int Page { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user