mirror of https://github.com/Squidex/squidex.git
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.
39 lines
1.2 KiB
39 lines
1.2 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschränkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System.Collections.Generic;
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace Squidex.Areas.IdentityServer.Controllers.Profile
|
|
{
|
|
public sealed class ProfileVM
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string Email { get; set; }
|
|
|
|
public string DisplayName { get; set; }
|
|
|
|
public string? ClientSecret { get; set; }
|
|
|
|
public string? ErrorMessage { get; set; }
|
|
|
|
public string? SuccessMessage { get; set; }
|
|
|
|
public bool IsHidden { get; set; }
|
|
|
|
public bool HasPassword { get; set; }
|
|
|
|
public bool HasPasswordAuth { get; set; }
|
|
|
|
public List<UserProperty> Properties { get; set; }
|
|
|
|
public IList<UserLoginInfo> ExternalLogins { get; set; }
|
|
|
|
public IList<ExternalProvider> ExternalProviders { get; set; }
|
|
}
|
|
}
|
|
|