namespace Nop.Core.Domain.Shipping; /// /// Represents a shipment /// public partial class Shipment : BaseEntity { /// /// Gets or sets the order identifier /// public int OrderId { get; set; } /// /// Gets or sets the tracking number of this shipment /// public string TrackingNumber { get; set; } /// /// Gets or sets the total weight of this shipment /// It's nullable for compatibility with the previous version of nopCommerce where was no such property /// public decimal? TotalWeight { get; set; } /// /// Gets or sets the shipped date and time /// public DateTime? ShippedDateUtc { get; set; } /// /// Gets or sets the delivery date and time /// public DateTime? DeliveryDateUtc { get; set; } /// /// Gets or sets the ready for pickup date and time /// public DateTime? ReadyForPickupDateUtc { get; set; } /// /// Gets or sets the admin comment /// public string AdminComment { get; set; } /// /// Gets or sets the entity creation date /// public DateTime CreatedOnUtc { get; set; } }