FruitBank/Presentation/Nop.Web/Models/Customer/MultiFactorAuthenticationPr...

18 lines
409 B
C#

using Nop.Web.Framework.Models;
namespace Nop.Web.Models.Customer;
public partial record MultiFactorAuthenticationProviderModel : BaseNopEntityModel
{
public bool Selected { get; set; }
public string Name { get; set; }
public string SystemName { get; set; }
public string LogoUrl { get; set; }
public string Description { get; set; }
public Type ViewComponent { get; set; }
}