Files
AspNetCore.Identity.MongoDb…/sample/MongoIdentitySample.Mvc/Models/ManageViewModels/RemoveLoginViewModel.cs
T
2017-11-19 18:35:40 +00:00

15 lines
356 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace MongoIdentitySample.Mvc.Models.ManageViewModels
{
public class RemoveLoginViewModel
{
public string LoginProvider { get; set; }
public string ProviderKey { get; set; }
}
}