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