Files
Thom Lamb 2cd6df6481 Initial commit of the ClosedXML library
Establishes the foundational structure, core Excel functionality, and tooling.

- Implements base components for cells, ranges, columns, and rows.
- Integrates a custom calculation engine with a wide range of Excel functions.
- Adds comprehensive support for styling, conditional formatting, data validation, comments, pictures, and charts.
- Configures build setup, project metadata (NuGet), and developer guidelines.
- Includes editor and Git attributes for consistent code style and line endings.
2026-06-23 11:02:53 -05:00

89 lines
2.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations;
namespace ClosedXML_Sandbox
{
public class OneRow
{
[Display(Name = "Col01")]
public int Col01 { get; set; }
[Display(Name = "Col02")]
public string Col02 { get; set; }
[Display(Name = "Col03")]
public DateTime? Col03 { get; set; }
[Display(Name = "Col04")]
public TimeSpan? Col04 { get; set; }
[Display(Name = "Col05")]
public TimeSpan? Col05 { get; set; }
[Display(Name = "Col06")]
public TimeSpan? Col06 { get; set; }
[Display(Name = "Col07")]
public TimeSpan? Col07 { get; set; }
[Display(Name = "Col08")]
public TimeSpan? Col08 { get; set; }
[Display(Name = "Col09")]
public string Col09 { get; set; }
[Display(Name = "Col10")]
public decimal Col10 { get; set; }
[Display(Name = "Col11")]
public string Col11 { get; set; }
[Display(Name = "Col12")]
public bool Col12 { get; set; }
[Display(Name = "Col13")]
public bool Col13 { get; set; }
[Display(Name = "Col14")]
public string Col14 { get; set; }
[Display(Name = "Col15")]
public bool Col15 { get; set; }
[Display(Name = "Col16")]
public string Col16 { get; set; }
[Display(Name = "Col17")]
public string Col17 { get; set; }
[Display(Name = "Col18")]
public DateTime? Col18 { get; set; }
[Display(Name = "Col19")]
public string Col19 { get; set; }
[Display(Name = "Col20")]
public string Col20 { get; set; }
[Display(Name = "Col21")]
public string Col21 { get; set; }
[Display(Name = "Col22")]
public string Col22 { get; set; }
[Display(Name = "Col23")]
public string Col23 { get; set; }
[Display(Name = "Col24")]
public bool Col24 { get; set; }
[Display(Name = "Col25")]
public int? Col25 { get; set; }
[Display(Name = "Col26")]
public string Col26 { get; set; }
}
}