using Microsoft.AspNetCore.Mvc;
namespace EnvelopeGenerator.Application.Common.Dto;
///
/// Data Transfer Object representing configuration settings.
///
[ApiExplorerSettings(IgnoreApi = true)]
public class ConfigDto
{
///
/// Gets or sets the sending profile identifier.
///
public int SendingProfile { get; set; }
///
/// Gets or sets the signature host URL or name.
///
public required string SignatureHost { get; set; }
///
/// Gets or sets the name of the external program.
///
public string? ExternalProgramName { get; set; }
///
/// Gets or sets the path where exports will be saved.
///
public string? ExportPath { get; set; }
}