KOP/Components/Visual/ColumnInfo.cs

24 lines
616 B
C#
Raw Permalink Normal View History

2024-10-03 23:07:05 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Components.Visual
2024-10-03 23:07:05 +04:00
{
public class ColumnInfo
{
public string HeaderText { get; set; } = string.Empty;
public int Width { get; set; }
2024-10-03 23:07:05 +04:00
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;
}
}
}