microsoft/healthcare-shared-components
Publicmirrored from https://github.com/microsoft/healthcare-shared-componentsAvailable
src/Microsoft.Health.Api/Configuration/IApiConfiguration.cs
13lines · 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 Microsoft.Health.Api.Features.Cors; |
| 7 | |
| 8 | namespace Microsoft.Health.Api.Configuration; |
| 9 | |
| 10 | public interface IApiConfiguration |
| 11 | { |
| 12 | CorsConfiguration Cors { get; } |
| 13 | } |
| 14 | |