aspnetcore/src/Service.EF/IdentityServiceScope.cs

13 lines
430 B
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.
namespace Microsoft.AspNetCore.Identity.Service
{
public class IdentityServiceScope<TApplicationKey>
{
public string Id { get; set; }
public TApplicationKey ApplicationId { get; set; }
public string Value { get; set; }
}
}