tbf/GenesisCordonelInterface/UI/Grid/MeterGridColumnConfig.cs

12 lines
381 B
C#

namespace GenesisCordonelInterface.UI.Grid
{
public class MeterGridColumnConfig
{
public string Name { get; set; }
public string HeaderText { 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;
}
}