FruitBank/Plugins/Nop.Plugin.Payments.PayPalC.../Models/Admin/AuthenticationModel.cs

19 lines
378 B
C#

using Nop.Web.Framework.Models;
namespace Nop.Plugin.Payments.PayPalCommerce.Models.Admin;
/// <summary>
/// Represents the authentication model
/// </summary>
public record AuthenticationModel : BaseNopModel
{
#region Properties
public int StoreId { get; set; }
public string SharedId { get; set; }
public string AuthCode { get; set; }
#endregion
}