KOP/Components/Visual/ColumnInfo.cs

18 lines
463 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 string DataPropertyName { get; set; } = string.Empty;
}
}