microsoft/healthcare-shared-components
Publicmirrored from https://github.com/microsoft/healthcare-shared-componentsAvailable
src/Microsoft.Health.Development.IdentityProvider/Configuration/Application.cs
16lines · 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 Application |
| 11 | { |
| 12 | public string Id { get; set; } |
| 13 | |
| 14 | public IList<string> Roles { get; } = new List<string>(); |
| 15 | } |
| 16 | } |
| 17 | |