Webiant Logo Webiant Logo
  1. No results found.

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

ReturnableOrderItem.cs

using Nop.Core.Domain.Orders;

namespace Nop.Services.Orders;

/// 
/// Represents the returnable order item
/// 
public partial class ReturnableOrderItem
{
    #region Properties

    /// 
    /// Gets or sets the available quantity for return
    /// 
    public int AvailableQuantityForReturn { get; set; }

    /// 
    /// Gets or sets the order item for return
    /// 
    public OrderItem OrderItem { get; set; }

    #endregion
}