Refactor ConfigDto class and update properties

- Change namespace to `EnvelopeGenerator.Application.DTOs`
- Remove `DocumentPath` property
- Update `SignatureHost` to be a required string
This commit is contained in:
tekh 2025-06-30 13:59:18 +02:00
parent 9756303d6e
commit 13899cf70a

View File

@ -8,11 +8,6 @@ namespace EnvelopeGenerator.Application.DTOs;
[ApiExplorerSettings(IgnoreApi = true)] [ApiExplorerSettings(IgnoreApi = true)]
public class ConfigDto public class ConfigDto
{ {
/// <summary>
/// Gets or sets the path to the document.
/// </summary>
public string? DocumentPath { get; set; }
/// <summary> /// <summary>
/// Gets or sets the sending profile identifier. /// Gets or sets the sending profile identifier.
/// </summary> /// </summary>
@ -21,7 +16,7 @@ public class ConfigDto
/// <summary> /// <summary>
/// Gets or sets the signature host URL or name. /// Gets or sets the signature host URL or name.
/// </summary> /// </summary>
public string? SignatureHost { get; set; } public required string SignatureHost { get; set; }
/// <summary> /// <summary>
/// Gets or sets the name of the external program. /// Gets or sets the name of the external program.