microsoft/healthcare-shared-components
Publicmirrored from https://github.com/microsoft/healthcare-shared-componentsAvailable
src/Microsoft.Health.Development.IdentityProvider/Configuration/Provider.cs
22lines · modecode
| 1 | // ------------------------------------------------------------------------------------------------- |
| 2 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 3 | // Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. |
| 4 | // ------------------------------------------------------------------------------------------------- |
| 5 | |
| 6 | using System.Collections.Generic; |
| 7 | |
| 8 | namespace Microsoft.Health.Development.IdentityProvider.Configuration |
| 9 | { |
| 10 | public class Provider |
| 11 | { |
| 12 | public const string Audience = "health-api"; |
| 13 | public const string LastModifiedClaim = "appid"; |
| 14 | public const string ClientIdClaim = "client_id"; |
| 15 | |
| 16 | public bool Enabled { get; set; } |
| 17 | |
| 18 | public IList<Application> ClientApplications { get; } = new List<Application>(); |
| 19 | |
| 20 | public IList<User> Users { get; } = new List<User>(); |
| 21 | } |
| 22 | } |
| 23 | |