using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using Tango.Core; namespace Tango.FSE.Diagnostics.Project { public class DiagnosticsProjectTabRowDefinition : ExtendedObject { private GridLength _height; public GridLength Height { get { return _height; } set { _height = value; RaisePropertyChangedAuto(); } } } }