From 13899cf70ae931e3c75ae9d29a1d09600dabf6fc Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 30 Jun 2025 13:59:18 +0200 Subject: [PATCH] Refactor ConfigDto class and update properties - Change namespace to `EnvelopeGenerator.Application.DTOs` - Remove `DocumentPath` property - Update `SignatureHost` to be a required string --- EnvelopeGenerator.Application/DTOs/ConfigDto.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/EnvelopeGenerator.Application/DTOs/ConfigDto.cs b/EnvelopeGenerator.Application/DTOs/ConfigDto.cs index 00ffb8dd..0745a55a 100644 --- a/EnvelopeGenerator.Application/DTOs/ConfigDto.cs +++ b/EnvelopeGenerator.Application/DTOs/ConfigDto.cs @@ -8,11 +8,6 @@ namespace EnvelopeGenerator.Application.DTOs; [ApiExplorerSettings(IgnoreApi = true)] public class ConfigDto { - /// - /// Gets or sets the path to the document. - /// - public string? DocumentPath { get; set; } - /// /// Gets or sets the sending profile identifier. /// @@ -21,7 +16,7 @@ public class ConfigDto /// /// Gets or sets the signature host URL or name. /// - public string? SignatureHost { get; set; } + public required string SignatureHost { get; set; } /// /// Gets or sets the name of the external program.