// 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
{
///
/// Entity type for a user's token
///
public class TestUserToken : TestUserToken { }
///
/// Entity type for a user's token
///
///
public class TestUserToken where TKey : IEquatable
{
///
/// The login provider for the login (i.e. facebook, google)
///
public virtual string LoginProvider { get; set; }
///
/// Key representing the login for the provider
///
public virtual string TokenName { get; set; }
///
/// Display name for the login
///
public virtual string TokenValue { get; set; }
///
/// User Id for the user who owns this login
///
public virtual TKey UserId { get; set; }
}
}