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 }