15 lines
343 B
C#
15 lines
343 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ChatSample.Models.ManageViewModels
|
|
{
|
|
public class RemoveLoginViewModel
|
|
{
|
|
public string LoginProvider { get; set; }
|
|
public string ProviderKey { get; set; }
|
|
}
|
|
}
|