Webiant Logo Webiant Logo
  1. No results found.

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

ProductsByTagModel.cs

using Nop.Web.Framework.Models;
using Nop.Web.Framework.Models.ArtificialIntelligence;

namespace Nop.Web.Models.Catalog;

/// <summary>
/// Represents a Products by tag model
/// </summary>
public partial record ProductsByTagModel : BaseNopEntityModel, IMetaTagsSupportedModel
{
    #region Properties

    public string MetaKeywords { get; set; }
    public string MetaDescription { get; set; }
    public string MetaTitle { get; set; }
    public string TagName { get; set; }
    public string TagSeName { get; set; }
    public CatalogProductsModel CatalogProductsModel { get; set; } = new();

    #endregion
}