namespace Nop.Core.Domain.Messages; /// /// Represents NewsLetterSubscription entity /// public partial class NewsLetterSubscription : BaseEntity { /// /// Gets or sets the newsletter subscription GUID /// public Guid NewsLetterSubscriptionGuid { get; set; } /// /// Gets or sets the subscriber email /// public string Email { get; set; } /// /// Gets or sets a value indicating whether subscription is active /// public bool Active { get; set; } /// /// Gets or sets the store identifier in which a customer has subscribed to newsletter /// public int StoreId { get; set; } /// /// Gets or sets the date and time when subscription was created /// public DateTime CreatedOnUtc { get; set; } /// /// Gets or sets the language identifier in which a customer has subscribed to newsletter /// public int LanguageId { get; set; } }