You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
969 B
43 lines
969 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace WebApplication1.Models
|
|
{
|
|
// AccountController 操作返回的模型。
|
|
|
|
public class ExternalLoginViewModel
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string Url { get; set; }
|
|
|
|
public string State { get; set; }
|
|
}
|
|
|
|
public class ManageInfoViewModel
|
|
{
|
|
public string LocalLoginProvider { get; set; }
|
|
|
|
public string Email { get; set; }
|
|
|
|
public IEnumerable<UserLoginInfoViewModel> Logins { get; set; }
|
|
|
|
public IEnumerable<ExternalLoginViewModel> ExternalLoginProviders { get; set; }
|
|
}
|
|
|
|
public class UserInfoViewModel
|
|
{
|
|
public string Email { get; set; }
|
|
|
|
public bool HasRegistered { get; set; }
|
|
|
|
public string LoginProvider { get; set; }
|
|
}
|
|
|
|
public class UserLoginInfoViewModel
|
|
{
|
|
public string LoginProvider { get; set; }
|
|
|
|
public string ProviderKey { get; set; }
|
|
}
|
|
}
|