using System.Security.Claims;
using Microsoft.AspNetCore.Identity;
namespace zero.Identity;
public class UserToken
{
///
/// Gets or sets the provider for this instance.
///
public string LoginProvider { get; set; }
///
/// The token.
///
public string Value { get; set; }
///
/// Gets or sets the name of the token.
///
public string Name { get; set; }
}