Webiant Logo Webiant Logo
  1. No results found.

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

PaymentInfoModel.cs

using Nop.Web.Framework.Models;

namespace Nop.Plugin.Payments.PayPalCommerce.Models;

/// 
/// Represents a payment info model
/// 
public record PaymentInfoModel : BaseNopModel
{
    #region Properties

    public string OrderId { get; set; }

    public string OrderTotal { get; set; }

    public string Errors { get; set; }

    #endregion
}