Show / Hide Table of Contents

Class Brand

intended to control some wording as it pertains to email messages and notifications that are sent to users via the app. By default, there is only one "Brand" configured, but this branding can serve as a foundation for White-labeling versions of the application.

Inheritance
System.Object
Brand
Namespace: LymeTemplateApi.Models
Assembly: LymeTemplateApi.Models.dll
Syntax
public class Brand : object

Properties

Address

Declaration
public Address Address { get; set; }
Property Value
Type Description
Address

AddressId

Foreign key to the Address table for a physical address.

Declaration
public int? AddressId { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

BrandedEmailBodyTemplate

The HTML template text that will wrap all email notifications.

Declaration
public string? BrandedEmailBodyTemplate { get; set; }
Property Value
Type Description
System.Nullable<System.String>

CompanyName

The name of the company that represents the brand.

Declaration
public string? CompanyName { get; set; }
Property Value
Type Description
System.Nullable<System.String>

DefaultSignature

The default sign-off signature presented in email notifications.

Declaration
public string? DefaultSignature { get; set; }
Property Value
Type Description
System.Nullable<System.String>

Id

Primary Key

Declaration
public int Id { get; set; }
Property Value
Type Description
System.Int32

LogoPath

The absolute path location for the logo.

Declaration
public string? LogoPath { get; set; }
Property Value
Type Description
System.Nullable<System.String>

Name

The name of the brand.

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

SupportContactInfo

The support contact information to include in email notifications.

Declaration
public string? SupportContactInfo { get; set; }
Property Value
Type Description
System.Nullable<System.String>

Website

The marketing website for the brand.

Declaration
public string? Website { get; set; }
Property Value
Type Description
System.Nullable<System.String>
In This Article
Back to top Generated by DocFX