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.
80 lines
2.7 KiB
80 lines
2.7 KiB
/*
|
|
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
|
|
* See https://github.com/openiddict/openiddict-core for more information concerning
|
|
* the license and the contributors participating to this project.
|
|
*/
|
|
|
|
using System;
|
|
using System.Diagnostics;
|
|
|
|
namespace OpenIddict.EntityFramework.Models
|
|
{
|
|
/// <summary>
|
|
/// Represents an OpenIddict scope.
|
|
/// </summary>
|
|
public class OpenIddictEntityFrameworkScope : OpenIddictEntityFrameworkScope<string>
|
|
{
|
|
public OpenIddictEntityFrameworkScope()
|
|
{
|
|
// Generate a new string identifier.
|
|
Id = Guid.NewGuid().ToString();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Represents an OpenIddict scope.
|
|
/// </summary>
|
|
[DebuggerDisplay("Id = {Id.ToString(),nq} ; Name = {Name,nq}")]
|
|
public class OpenIddictEntityFrameworkScope<TKey> where TKey : notnull, IEquatable<TKey>
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the concurrency token.
|
|
/// </summary>
|
|
public virtual string? ConcurrencyToken { get; set; } = Guid.NewGuid().ToString();
|
|
|
|
/// <summary>
|
|
/// Gets or sets the public description associated with the current scope.
|
|
/// </summary>
|
|
public virtual string? Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the localized public descriptions associated
|
|
/// with the current scope, serialized as a JSON object.
|
|
/// </summary>
|
|
public virtual string? Descriptions { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the display name associated with the current scope.
|
|
/// </summary>
|
|
public virtual string? DisplayName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the localized display names
|
|
/// associated with the current application,
|
|
/// serialized as a JSON object.
|
|
/// </summary>
|
|
public virtual string? DisplayNames { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the unique identifier associated with the current scope.
|
|
/// </summary>
|
|
public virtual TKey? Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the unique name associated with the current scope.
|
|
/// </summary>
|
|
public virtual string? Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the additional properties serialized as a JSON object,
|
|
/// or <c>null</c> if no bag was associated with the current scope.
|
|
/// </summary>
|
|
public virtual string? Properties { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the resources associated with the
|
|
/// current scope, serialized as a JSON array.
|
|
/// </summary>
|
|
public virtual string? Resources { get; set; }
|
|
}
|
|
}
|
|
|