using Nop.Core.Configuration; namespace Nop.Core.Domain.Messages; /// /// Messages settings /// public partial class MessagesSettings : ISettings { /// /// A value indicating whether popup notifications set as default /// public bool UsePopupNotifications { get; set; } /// /// 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 /// public bool UseDefaultEmailAccountForSendStoreOwnerEmails { get; set; } }