namespace PowderCoating.Application.DTOs.Company; /// /// Slim DTO passed into PdfService to control quote PDF appearance. /// public class QuoteTemplateSettingsDto { public string AccentColor { get; set; } = "#374151"; public string? FooterNote { get; set; } public string? DefaultTerms { get; set; } }