Webiant Logo Webiant Logo
  1. No results found.

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

PaymentTokenModel.cs

using Nop.Web.Framework.Models;

namespace Nop.Plugin.Payments.PayPalCommerce.Models.Public;

/// 
/// Represents the payment token model
/// 
public record PaymentTokenModel : BaseNopEntityModel
{
    #region Properties

    public string Type { get; set; }

    public string Title { get; set; }

    public string Expiration { get; set; }

    public bool IsPrimaryMethod { get; set; }

    #endregion
}