namespace Nop.Services.Shipping.Tracking; /// /// Represents a shipment status event /// public partial class ShipmentStatusEvent { /// /// Gets or sets a status /// public string Status { get; set; } /// /// Gets or sets an event name /// public string EventName { get; set; } /// /// Gets or sets a location (address) /// public string Location { get; set; } /// /// Gets or sets a two-letter country code /// public string CountryCode { get; set; } /// /// Gets or sets a date /// public DateTime? Date { get; set; } }