Files
PowderCoatingLogix/src/PowderCoating.Application/DTOs/Company/QuoteTemplateSettingsDto.cs
T
2026-04-23 21:38:24 -04:00

12 lines
338 B
C#

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