74 lines
1.9 KiB
C#
74 lines
1.9 KiB
C#
using Nop.Core.Domain.Localization;
|
|
using Nop.Core.Domain.Stores;
|
|
|
|
namespace Nop.Core.Domain.Messages;
|
|
|
|
/// <summary>
|
|
/// Represents a message template
|
|
/// </summary>
|
|
public partial class MessageTemplate : BaseEntity, ILocalizedEntity, IStoreMappingSupported
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the name
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the BCC Email addresses
|
|
/// </summary>
|
|
public string BccEmailAddresses { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the subject
|
|
/// </summary>
|
|
public string Subject { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the body
|
|
/// </summary>
|
|
public string Body { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether the template is active
|
|
/// </summary>
|
|
public bool IsActive { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the delay before sending message
|
|
/// </summary>
|
|
public int? DelayBeforeSend { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the period of message delay
|
|
/// </summary>
|
|
public int DelayPeriodId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the download identifier of attached file
|
|
/// </summary>
|
|
public int AttachedDownloadId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether direct reply is allowed
|
|
/// </summary>
|
|
public bool AllowDirectReply { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the used email account identifier
|
|
/// </summary>
|
|
public int EmailAccountId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether the entity is limited/restricted to certain stores
|
|
/// </summary>
|
|
public bool LimitedToStores { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the period of message delay
|
|
/// </summary>
|
|
public MessageDelayPeriod DelayPeriod
|
|
{
|
|
get => (MessageDelayPeriod)DelayPeriodId;
|
|
set => DelayPeriodId = (int)value;
|
|
}
|
|
} |