Webiant Logo Webiant Logo
  1. No results found.

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

IMetaTagsSupportedModel.cs

namespace Nop.Web.Framework.Models.ArtificialIntelligence;

/// <summary>
/// Represents a model which supports meta-tags
/// </summary>
public partial interface IMetaTagsSupportedModel
{
    #region Properties

    public string MetaKeywords { get; set; }

    public string MetaDescription { get; set; }

    public string MetaTitle { get; set; }

    #endregion
}