Nop.Core_4.7/Plugins/Nop.Plugin.Payments.PayPalC.../Models/PaymentInfoModel.cs

19 lines
368 B
C#

using Nop.Web.Framework.Models;
namespace Nop.Plugin.Payments.PayPalCommerce.Models;
/// <summary>
/// Represents a payment info model
/// </summary>
public record PaymentInfoModel : BaseNopModel
{
#region Properties
public string OrderId { get; set; }
public string OrderTotal { get; set; }
public string Errors { get; set; }
#endregion
}