namespace Nop.Core.Domain.Messages; /// /// Represents a campaign /// public partial class Campaign : BaseEntity { /// /// Gets or sets the name /// public string Name { get; set; } /// /// Gets or sets the subject /// public string Subject { get; set; } /// /// Gets or sets the body /// public string Body { get; set; } /// /// Gets or sets the store identifier which subscribers it will be sent to; set 0 for all newsletter subscribers /// public int StoreId { get; set; } /// /// Gets or sets the customer role identifier which subscribers it will be sent to; set 0 for all newsletter subscribers /// public int CustomerRoleId { get; set; } /// /// Gets or sets the date and time of instance creation /// public DateTime CreatedOnUtc { get; set; } /// /// Gets or sets the date and time in UTC before which this email should not be sent /// public DateTime? DontSendBeforeDateUtc { get; set; } }