13 lines
336 B
C#
13 lines
336 B
C#
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;
|
|
}
|
|
} |