feat: Hinzugefügt Logo-Konfiguration für verschiedene Kunden

This commit is contained in:
Developer 02 2024-09-17 14:10:27 +02:00
parent 4275f25f4a
commit 36fb033adc

View File

@ -0,0 +1,13 @@
namespace EnvelopeGenerator.Web.Models
{
public class Logo
{
public string Src { get; init; } = string.Empty;
public string CSSPath { get; init; } = string.Empty;
public string LockedPageClass { get; init; } = string.Empty;
public string ShowPageClass { get; init; } = string.Empty;
}
}