Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

NewsLetterSubscriptionMapModel.cs

using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;

namespace Nop.Plugin.Misc.Brevo.Models;

/// 
/// Represents a model for mapping newsletter subscriptions
/// 
public record NewsLetterSubscriptionMapModel : BaseNopModel
{
    /// 
    /// Gets or sets the type identifier
    /// 
    public int TypeId { get; set; }

    /// 
    /// Gets or sets the name of the list
    /// 
    [NopResourceDisplayName("Plugins.Misc.Brevo.Fields.List")]
    public string Name { get; set; }

    /// 
    /// Gets or sets the list identifier
    /// 
    public int ListId { get; set; }
}