Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Orders;
namespace Nop.Services.Payments;
///
/// Represents a RefundPaymentResult
///
public partial class RefundPaymentRequest
{
///
/// Gets or sets an order
///
public Order Order { get; set; }
///
/// Gets or sets an amount
///
public decimal AmountToRefund { get; set; }
///
/// Gets or sets a value indicating whether it's a partial refund; otherwise, full refund
///
public bool IsPartialRefund { get; set; }
}