KOP/Components/ColumnInfo.cs
2024-10-03 23:14:26 +04:00

24 lines
616 B
C#

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;
}
}
}