Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Plugin.Payments.PayPalCommerce.Models.Public;
///
/// Represents the payment token list model
///
public record PaymentTokenListModel : BaseNopModel
{
#region Properties
public bool VaultIsEnabled { get; set; }
public string Error { get; set; }
public List PaymentTokens { get; set; } = new();
#endregion
}