10 lines
306 B
C#
10 lines
306 B
C#
using Nop.Web.Framework.Models;
|
|
|
|
namespace Nop.Web.Areas.Admin.Models.ExternalAuthentication;
|
|
|
|
/// <summary>
|
|
/// Represents an external authentication method list model
|
|
/// </summary>
|
|
public partial record ExternalAuthenticationMethodListModel : BasePagedListModel<ExternalAuthenticationMethodModel>
|
|
{
|
|
} |