namespace EnvelopeGenerator.Application.DTOs { public record ConfigDto { public string DocumentPath { get; init; } public int SendingProfile { get; init; } public string SignatureHost { get; init; } public string ExternalProgramName { get; init; } public string ExportPath { get; init; } public string DocumentPathDmz { get; init; } public string ExportPathDmz { get; init; } public string SignedMailPath { get; init; } public string DocumentPathMoveAftsend { get; init; } } }