src/Authoring/Expressions/IOperation.cs (8 lines of code) (raw):

// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Azure.ApiManagement.PolicyToolkit.Authoring.Expressions; public interface IOperation { string Id { get; } string Method { get; } string Name { get; } string UrlTemplate { get; } }