Projektdateien hinzufügen.

This commit is contained in:
Stefan Hutter
2024-07-18 14:22:38 +02:00
commit 977d1b0c9f
12346 changed files with 14418579 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
namespace FastExcel
{
/// <summary>
/// Extra properties for a worksheet
/// </summary>
public class WorksheetProperties
{
/// <summary>
/// Sheet index
/// </summary>
public int CurrentIndex { get; set; }
/// <summary>
/// Sheet Id
/// </summary>
public int SheetId { get; set; }
/// <summary>
/// Sheet name
/// </summary>
public string Name { get; set; }
}
}