13 lines
289 B
C#
13 lines
289 B
C#
using System.Collections.Generic;
|
|
using Microsoft.AspNet.Mvc.Rendering;
|
|
|
|
namespace Yavsc.ViewModels.Manage
|
|
{
|
|
public class ConfigureTwoFactorViewModel
|
|
{
|
|
public string SelectedProvider { get; set; }
|
|
|
|
public ICollection<SelectListItem> Providers { get; set; }
|
|
}
|
|
}
|