FruitBank/Libraries/Nop.Services/Payments/PostProcessPaymentRequest.cs

14 lines
390 B
C#

using Nop.Core.Domain.Orders;
namespace Nop.Services.Payments;
/// <summary>
/// Represents a PostProcessPaymentRequest
/// </summary>
public partial class PostProcessPaymentRequest
{
/// <summary>
/// Gets or sets an order. Used when order is already saved (payment gateways that redirect a customer to a third-party URL)
/// </summary>
public Order Order { get; set; }
}