[corlib] Update ValueTuple implementation
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / IExpandChild.cs
1 //----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //----------------------------------------------------------------
4
5 using System.Activities.Presentation.Model;
6 namespace System.Activities.Presentation
7 {
8     //Marker interface to support expanded children inside ActivityDesigner/ServiceDesigner.
9     internal interface IExpandChild
10     {
11         ModelItem ExpandedChild
12         {
13             get;
14         }
15     }
16 }