Webiant Logo Webiant Logo
  1. No results found.

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

JsonLdInteractionStatisticModel.cs

using Newtonsoft.Json;

namespace Nop.Web.Models.JsonLD;

public partial record JsonLdInteractionStatisticModel : JsonLdModel
{
    #region Properties

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

    [JsonProperty("interactionType")]
    public string InteractionType { get; set; }

    [JsonProperty("userInteractionCount")]
    public int UserInteractionCount { get; set; }

    #endregion
}