//---------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // //---------------------------------------------------------------- namespace System.Activities.Presentation.View.OutlineView { using System; /// /// Shows instances of this class in outline view. /// [AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = false)] public sealed class ShowInOutlineViewAttribute : Attribute { /// /// Gets or sets this specify property name to be shown in place of the current /// ModelItem /// public string PromotedProperty { get; set; } } }