1st commit

This commit is contained in:
2024-03-22 01:35:19 +01:00
parent b224604cd1
commit cd53574fba
18 changed files with 1334 additions and 0 deletions

44
xmlserializetest/Table.cs Normal file
View File

@@ -0,0 +1,44 @@
using System;
using System.Linq;
using System.Xml;
using System.Xml.Serialization;
namespace xmlserializetest
{
public class Table
{
[XmlAttribute("name")]
public string Name { get; set; }
[XmlAttribute("useMonospaceFont")]
public string UseMonospaceFont { get; set; }
[XmlAttribute("headersVisible")]
public string HeadersVisible { get; set; }
[XmlAttribute("transientColumnIndex")]
public string TransientColumnIndex { get; set; }
[XmlAttribute("xmlns")]
public string Xmlns { get; set; }
[XmlElement("rows")]
public Rows Rows { get; set; }
}
public class Rows
{
[XmlElement("row")]
public Row[] Row { get; set; }
}
public class Row
{
[XmlElement("cell")]
public Cell[] Cell { get; set; }
}
public class Cell
{
[XmlText]
public string cell;
}
}