Nop.Core_4.7/Plugins/Nop.Plugin.Payments.PayPalC.../Models/OnboardingModel.cs

34 lines
742 B
C#

using Nop.Web.Framework.Models;
namespace Nop.Plugin.Payments.PayPalCommerce.Models;
/// <summary>
/// Represents an onboarding model
/// </summary>
public record OnboardingModel : BaseNopModel
{
#region Properties
public string MerchantGuid { get; set; }
public string Email { get; set; }
public bool Email_OverrideForStore { get; set; }
public string SignUpUrl { get; set; }
public string SharedId { get; set; }
public string AuthCode { get; set; }
public bool AccountCreated { get; set; }
public bool EmailConfirmed { get; set; }
public bool PaymentsReceivable { get; set; }
public bool PermissionGranted { get; set; }
public bool DisplayStatus { get; set; }
#endregion
}