PIbd-31_Kryukov.A.I._COP_9/COP/KryukovLib/ColumnsConfiguratoin.cs

18 lines
430 B
C#
Raw Normal View History

2024-09-22 10:42:52 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KryukovLib
{
public class ColumnsConfiguratoin
{
public int ColumnsCount { get; set; }
public string[] NameColumn { get; set; }
public int[] Width { get; set; }
public bool[] Visible { get; set; }
public string[] PropertiesObject { get; set; }
}
}