15 lines
344 B
C#
15 lines
344 B
C#
![]() |
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace WebApplication.Models.ManageViewModels
|
||
|
{
|
||
|
public class RemoveLoginViewModel
|
||
|
{
|
||
|
public string LoginProvider { get; set; }
|
||
|
public string ProviderKey { get; set; }
|
||
|
}
|
||
|
}
|