Webiant Logo Webiant Logo
  1. No results found.

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

AuthenticationModel.cs

using Nop.Web.Framework.Models;

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

/// 
/// Represents the authentication model
/// 
public record AuthenticationModel : BaseNopModel
{
    #region Properties

    public int StoreId { get; set; }

    public string SharedId { get; set; }

    public string AuthCode { get; set; }

    #endregion
}