Initial commit

This commit is contained in:
2026-04-23 21:38:24 -04:00
commit 63e12a9636
1762 changed files with 1672620 additions and 0 deletions
@@ -0,0 +1,11 @@
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; }
}