using System.Collections.Generic; using Microsoft.AspNet.Mvc.Rendering; namespace Yavsc.ViewModels.Account { public class SendCodeViewModel { public string SelectedProvider { get; set; } public ICollection Providers { get; set; } public string ReturnUrl { get; set; } public bool RememberMe { get; set; } } }