using Nop.Core.Configuration; namespace Nop.Core.Domain.Messages; /// /// Message templates settings /// public partial class MessageTemplatesSettings : ISettings { /// /// Gets or sets a value indicating whether to replace message tokens according to case invariant rules /// public bool CaseInvariantReplacement { get; set; } /// /// Gets or sets a color1 in hex format ("#hhhhhh") to use in workflow message formatting /// public string Color1 { get; set; } /// /// Gets or sets a color2 in hex format ("#hhhhhh") to use in workflow message formatting /// public string Color2 { get; set; } /// /// Gets or sets a color3 in hex format ("#hhhhhh") to use in workflow message formatting /// public string Color3 { get; set; } }