18 lines
441 B
C#
18 lines
441 B
C#
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; }
|
|
}
|
|
}
|