// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the Apache 2.0 License. // See the LICENSE file in the project root for more information. #pragma warning disable 1591 using System.Linq.Expressions; namespace System.Reactive.Joins { /// /// Represents an execution plan for join patterns represented by an expression tree. /// /// The type of the results produced by the plan. public class QueryablePlan { internal QueryablePlan(Expression expression) { Expression = expression; } /// /// Gets the expression tree representing the join pattern execution plan. /// public Expression Expression { get; private set; } } } #pragma warning restore 1591