Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Areas.Admin.Models.Orders;
///
/// Represents a shipment event model
///
public partial record ShipmentStatusEventModel : BaseNopModel
{
#region Properties
public string Status { get; set; }
public string EventName { get; set; }
public string Location { get; set; }
public string Country { get; set; }
public DateTime? Date { get; set; }
#endregion
}