File: System.Activities.Presentation\System\Activities\Presentation\IExpandChild.cs
Project: ndp\cdf\src\NetFx40\Tools\System.Activities.Presentation.csproj (System.Activities.Presentation)
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//----------------------------------------------------------------
 
using System.Activities.Presentation.Model;
namespace System.Activities.Presentation
{
    //Marker interface to support expanded children inside ActivityDesigner/ServiceDesigner.
    internal interface IExpandChild
    {
        ModelItem ExpandedChild
        {
            get;
        }
    }
}