using DocumentFormat.OpenXml.Bibliography; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KOP_Labs.Classes { public class TableParameters { public string? _header { get; set; } public int _width { get; set; } public bool _isVisual { get; set; } public string? _name { get; set; } public TableParameters(string header, int width, bool isVisual, string name) { _header = header; _width = width; _isVisual = isVisual; _name = name; } } }