diff --git a/EnvelopeGenerator.Application/Common/Dto/SignatureDto.cs b/EnvelopeGenerator.Application/Common/Dto/SignatureDto.cs index 95ba47da..9aa0a843 100644 --- a/EnvelopeGenerator.Application/Common/Dto/SignatureDto.cs +++ b/EnvelopeGenerator.Application/Common/Dto/SignatureDto.cs @@ -1,6 +1,7 @@ using EnvelopeGenerator.Domain.Constants; using EnvelopeGenerator.Domain.Interfaces; using Microsoft.AspNetCore.Mvc; +using System.ComponentModel.DataAnnotations.Schema; namespace EnvelopeGenerator.Application.Common.Dto; @@ -104,4 +105,24 @@ public class SignatureDto : ISignature /// /// public SenderAppType SenderAppType { get; set; } = SenderAppType.LegacyFormApp; + + /// + /// + /// + public string? FullName { get; set; } + + /// + /// + /// + public string? Position { get; set; } + + /// + /// + /// + public string? Place { get; set; } + + /// + /// + /// + public byte[]? Ink { get; set; } } \ No newline at end of file