12 lines
333 B
C#
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);
|
|
} |