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 DiagnosticsProjectTabColumnDefinition : ExtendedObject { private GridLength _width; public GridLength Width { get { return _width; } set { _width = value; RaisePropertyChangedAuto(); } } } }