// ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. // ------------------------------------------------------------ using System.Collections.Generic; using Microsoft.OpenApi.Models; namespace Microsoft.OpenApi.OData.Extensions { /// /// The interface for route prefix. /// public interface IODataRoutePathPrefixProvider { /// /// The route prefix. /// public string PathPrefix { get; } /// /// The route prefix parameters. /// public IEnumerable Parameters { get; } } }