18 lines
441 B
C#
Raw Normal View History

2024-09-09 22:02:46 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CreateVisualComponent
{
public class ColumnsConfiguratoin
{
public int ColumnsCount { get; set; }
public string[] ColumnName { get; set; }
public int[] Width { get; set; }
public bool[] Visible { get; set; }
public string[] PropertiesObject { get; set; }
}
}