ColumnInfo.cs 159 B

123456
  1. using ClosedXML.Excel;
  2. namespace ExcelInfo
  3. {
  4. public record ColumnInfo(string Letter, string? Name, int NumberOfCells, XLDataType Type, int Position);
  5. }