blob: 3f10fa7937e0d04f0d29eadf8b3df7333f358dce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace Tango.FSE.Diagnostics.Project
{
public class DiagnosticsProjectTabColumnDefinition
{
public GridLength Width { get; set; }
}
}
|