39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.AspNetCore.Identity.Test
|
|
{
|
|
/// <summary>
|
|
/// Entity type for a user's token
|
|
/// </summary>
|
|
public class TestUserToken : TestUserToken<string> { }
|
|
|
|
/// <summary>
|
|
/// Entity type for a user's token
|
|
/// </summary>
|
|
/// <typeparam name="TKey"></typeparam>
|
|
public class TestUserToken<TKey> where TKey : IEquatable<TKey>
|
|
{
|
|
/// <summary>
|
|
/// The login provider for the login (i.e. facebook, google)
|
|
/// </summary>
|
|
public virtual string LoginProvider { get; set; }
|
|
|
|
/// <summary>
|
|
/// Key representing the login for the provider
|
|
/// </summary>
|
|
public virtual string TokenName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Display name for the login
|
|
/// </summary>
|
|
public virtual string TokenValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// User Id for the user who owns this login
|
|
/// </summary>
|
|
public virtual TKey UserId { get; set; }
|
|
}
|
|
} |