tbf/TBF/Rig/BridgeComponents/GciBridge/UI/Grid/MeterGridColumnConfig.cs

15 lines
533 B
C#

using static TBF.Rig.BridgeComponents.GciBridge.UI.Grid.MeterGridConfigProvider;
namespace TBF.Rig.BridgeComponents.GciBridge.UI.Grid
{
public class MeterGridColumnConfig
{
public string Name { get; set; }
public string HeaderText { get; set; }
public MeterGridColumnType ColumnType { get; set; }
public bool Visible { get; set; } = true;
public int DisplayIndex { get; set; }
public int Width { get; set; } = 80;
public bool ReadOnly { get; set; } = false;
}
}