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