Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

MessageTemplatesSettings.cs

using Nop.Core.Configuration;

namespace Nop.Core.Domain.Messages;

/// <summary>
/// Message templates settings
/// </summary>
public partial class MessageTemplatesSettings : ISettings
{
    /// <summary>
    /// Gets or sets a value indicating whether to replace message tokens according to case invariant rules
    /// </summary>
    public bool CaseInvariantReplacement { get; set; }

    /// <summary>
    /// Gets or sets a color1 in  hex format ("#hhhhhh") to use in workflow message formatting
    /// </summary>
    public string Color1 { get; set; }

    /// <summary>
    /// Gets or sets a color2 in  hex format ("#hhhhhh") to use in workflow message formatting
    /// </summary>
    public string Color2 { get; set; }

    /// <summary>
    /// Gets or sets a color3 in  hex format ("#hhhhhh") to use in workflow message formatting
    /// </summary>
    public string Color3 { get; set; }
}