24 lines
616 B
C#
24 lines
616 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Components.Visual
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
}
|