Webiant Logo Webiant Logo
  1. No results found.

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

TrackingItem.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Misc.Omnisend.DTO.Events;

public class TrackingItem
{
    [JsonProperty("code")] public string Code { get; set; }
    [JsonProperty("courierTitle")] public string CourierTitle { get; set; }
    [JsonProperty("courierURL")] public string CourierURL { get; set; }
    [JsonProperty("status")] public string Status { get; set; }
}