Files
2025-03-13 12:04:22 -07:00

49 lines
1.0 KiB
C#

using System;
using System.Xml;
using System.Xml.Serialization;
namespace ExcelZipLib
{
[Serializable()]
[XmlType(Namespace = "http://schemas.openxmlformats.org/spreadsheetml/2006/main")]
[XmlRoot("sst", Namespace = "http://schemas.openxmlformats.org/spreadsheetml/2006/main")]
public class sst
{
/// <summary>
/// The unique count
/// </summary>
[XmlAttribute]
public string uniqueCount;
/// <summary>
/// The count
/// </summary>
[XmlAttribute]
public string count;
/// <summary>
/// The si
/// </summary>
[XmlElement("si")]
[NonSerialized]
public SharedString[] si;
/// <summary>
/// Initializes a new instance of the <see cref="sst"/> class.
/// </summary>
public sst()
{
}
}
/// <summary>
/// The shared string class.
/// </summary>
public class SharedString
{
/// <summary>
/// The t.
/// </summary>
public string t;
}
}