Files
EnvelopeGenerator/EnvelopeGenerator.Application/DTOs/ConfigDto.cs

12 lines
333 B
C#

namespace EnvelopeGenerator.Application.DTOs
{
public record ConfigDto(
string DocumentPath,
int SendingProfile,
string SignatureHost,
string ExternalProgramName,
string ExportPath,
string DocumentPathDmz,
string ExportPathDmz,
string DocumentPathMoveAftsend);
}