Try your search with a different keyword or use * as a wildcard.
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
}