Try your search with a different keyword or use * as a wildcard.
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
}