CPF/CPF.ReoGrid/XML/RGXmlPageBreaks.cs
2024-06-24 10:15:59 +08:00

17 lines
279 B
C#

using System;
using System.Reflection;
using System.Xml.Serialization;
namespace CPF.ReoGrid.XML
{
[Obfuscation(Feature = "renaming", Exclude = true)]
public class RGXmlPageBreaks
{
[XmlAttribute("row")]
public int row;
[XmlAttribute("col")]
public int col;
}
}