12345678910111213141516171819202122232425 |
- // Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
- // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
- #pragma warning disable 1591
- using Microsoft.WindowsAzure.Storage.Table;
- using System.Collections.Generic;
- namespace HaBook.IES.IdentityServer.AzureTableStorage.Entities
- {
- public class ApiScope :TableEntity
- {
- public int Id { get; set; }
- public string Name { get; set; }
- public string DisplayName { get; set; }
- public string Description { get; set; }
- public bool Required { get; set; }
- public bool Emphasize { get; set; }
- public bool ShowInDiscoveryDocument { get; set; } = true;
- public List<ApiScopeClaim> UserClaims { get; set; }
- public int ApiResourceId { get; set; }
- public ApiResource ApiResource { get; set; }
- }
- }
|