diff --git a/EnvelopeGenerator.Web/Models/Logo.cs b/EnvelopeGenerator.Web/Models/Logo.cs new file mode 100644 index 00000000..05462768 --- /dev/null +++ b/EnvelopeGenerator.Web/Models/Logo.cs @@ -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; + } +} \ No newline at end of file