using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WinFormsLibrary1 { public class ColumnInfo { public string HeaderText { get; set; } = string.Empty; public int Width { get; set; } public bool Visible { get; set; } public string Name { get; set; } = string.Empty; public ColumnInfo(string headerText, string name, int width, bool visible) { HeaderText = headerText; Name = name; Width = width; Visible = visible; } } }