From 8d736cdc5edbb63e70fb00c75b16fa48674b525c Mon Sep 17 00:00:00 2001 From: TekH Date: Fri, 12 Jun 2026 15:14:51 +0200 Subject: [PATCH] Refactor EnvelopeDto property for receiver handling Replaced the `Receivers` property with `EnvelopeReceivers` in the `EnvelopeDto` class to improve clarity and better align with the updated data model. The new property uses `IEnumerable?` instead of `IEnumerable?`. --- EnvelopeGenerator.Application/Common/Dto/EnvelopeDto.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnvelopeGenerator.Application/Common/Dto/EnvelopeDto.cs b/EnvelopeGenerator.Application/Common/Dto/EnvelopeDto.cs index 739ce86f..66e41b61 100644 --- a/EnvelopeGenerator.Application/Common/Dto/EnvelopeDto.cs +++ b/EnvelopeGenerator.Application/Common/Dto/EnvelopeDto.cs @@ -133,5 +133,5 @@ public record EnvelopeDto : IEnvelope /// /// /// - public IEnumerable? Receivers { get; set; } + public IEnumerable? EnvelopeReceivers { get; set; } } \ No newline at end of file