Webiant Logo Webiant Logo
  1. No results found.

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

JsonLdBreadcrumbListModel.cs

using Newtonsoft.Json;

namespace Nop.Web.Models.JsonLD;

public record JsonLdBreadcrumbListModel : JsonLdModel
{
    #region Ctor

    public JsonLdBreadcrumbListModel()
    {
        ItemListElement = new List();
    }

    #endregion

    #region Properties

    [JsonProperty("@context")]
    public static string Context => "https://schema.org";

    [JsonProperty("@type")]
    public static string Type => "BreadcrumbList";

    [JsonProperty("itemListElement")]
    public IList ItemListElement { get; set; }

    #endregion
}