yavsc/Yavsc.Server/ViewModels/Account/SendCodeViewModel.cs

16 lines
373 B
C#
Raw Normal View History

2018-03-26 19:27:29 +02:00
using System.Collections.Generic;
using Microsoft.AspNet.Mvc.Rendering;
namespace Yavsc.ViewModels.Account
{
public class SendCodeViewModel
{
public string SelectedProvider { get; set; }
public ICollection<SelectListItem> Providers { get; set; }
public string ReturnUrl { get; set; }
public bool RememberMe { get; set; }
}
}