17 lines
279 B
C#
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;
|
|
}
|
|
}
|