Webiant Logo Webiant Logo
  1. No results found.

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

ShipmentItem.cs

namespace Nop.Core.Domain.Shipping;

/// 
/// Represents a shipment item
/// 
public partial class ShipmentItem : BaseEntity
{
    /// 
    /// Gets or sets the shipment identifier
    /// 
    public int ShipmentId { get; set; }

    /// 
    /// Gets or sets the order item identifier
    /// 
    public int OrderItemId { get; set; }

    /// 
    /// Gets or sets the quantity
    /// 
    public int Quantity { get; set; }

    /// 
    /// Gets or sets the warehouse identifier
    /// 
    public int WarehouseId { get; set; }
}