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

18 lines
434 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; }
2024-10-06 14:23:43 +04:00
public string[]? NameColumn { get; set; }
public int[]? Width { get; set; }
public bool[]? Visible { get; set; }
public string[]? PropertiesObject { get; set; }
2024-09-22 10:42:52 +04:00
}
}