using Newtonsoft.Json; namespace Nop.Plugin.Widgets.GoogleAnalytics.Api.Models; public class ValidationMessage { /// /// The path to the field that was invalid /// [JsonProperty("fieldPath")] public string FieldPath { get; set; } /// /// A description of the error /// [JsonProperty("description")] public string Description { get; set; } /// /// A ValidationCode that corresponds to the error /// [JsonProperty("validationCode")] public string ValidationCode { get; set; } }