22 lines
378 B
C#
22 lines
378 B
C#
|
namespace ShabComponentsLibrary
|
|||
|
{
|
|||
|
public class ColumnInfo
|
|||
|
{
|
|||
|
public string Header = string.Empty;
|
|||
|
|
|||
|
public int Width;
|
|||
|
|
|||
|
public bool IsVisible;
|
|||
|
|
|||
|
public string Name = string.Empty;
|
|||
|
|
|||
|
public ColumnInfo(string Header, int Width, bool IsVisible, string Name)
|
|||
|
{
|
|||
|
this.Header = Header;
|
|||
|
this.Width = Width;
|
|||
|
this.IsVisible = IsVisible;
|
|||
|
this.Name = Name;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|