21 lines
627 B
C#
21 lines
627 B
C#
using Nop.Core.Configuration;
|
|
|
|
namespace Nop.Core.Domain.Messages;
|
|
|
|
/// <summary>
|
|
/// Messages settings
|
|
/// </summary>
|
|
public partial class MessagesSettings : ISettings
|
|
{
|
|
/// <summary>
|
|
/// A value indicating whether popup notifications set as default
|
|
/// </summary>
|
|
public bool UsePopupNotifications { get; set; }
|
|
|
|
/// <summary>
|
|
/// A value indicating whether to use the default email account to send emails for store owner
|
|
///
|
|
/// If set to false the message template email address will be use
|
|
/// </summary>
|
|
public bool UseDefaultEmailAccountForSendStoreOwnerEmails { get; set; }
|
|
} |