From 6c8c8f22a36a2d3f413d8426e54119ff3b0f42cb Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 1 Apr 2026 15:22:56 +0200 Subject: [PATCH] Add EnvelopeReceivers to EnvelopeDto Added EnvelopeReceivers property to EnvelopeDto to support a collection of envelope receiver DTOs. Also included the required using directive for EnvelopeReceiverDto. --- EnvelopeGenerator.Application/Common/Dto/EnvelopeDto.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/EnvelopeGenerator.Application/Common/Dto/EnvelopeDto.cs b/EnvelopeGenerator.Application/Common/Dto/EnvelopeDto.cs index a64b0e09..2e7b4d43 100644 --- a/EnvelopeGenerator.Application/Common/Dto/EnvelopeDto.cs +++ b/EnvelopeGenerator.Application/Common/Dto/EnvelopeDto.cs @@ -1,5 +1,6 @@ using DigitalData.EmailProfilerDispatcher.Abstraction.Attributes; using DigitalData.UserManager.Application.DTOs.User; +using EnvelopeGenerator.Application.Common.Dto.EnvelopeReceiver; using EnvelopeGenerator.Domain.Constants; using EnvelopeGenerator.Domain.Entities; using EnvelopeGenerator.Domain.Interfaces; @@ -174,4 +175,9 @@ public record EnvelopeDto : IEnvelope /// /// public IEnumerable? Documents { get; set; } + + /// + /// + /// + public IEnumerable? EnvelopeReceivers { get; set; } } \ No newline at end of file