FruitBank/Libraries/Nop.Core/Domain/Messages/MessageTemplatesSettings.cs

29 lines
908 B
C#

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; }
}