23 lines
378 B
C#
23 lines
378 B
C#
![]() |
using System;
|
|||
|
using System.Reflection;
|
|||
|
using System.Xml.Serialization;
|
|||
|
|
|||
|
namespace CPF.ReoGrid.XML
|
|||
|
{
|
|||
|
[Obfuscation(Feature = "renaming", Exclude = true)]
|
|||
|
public class RGXmlMargins
|
|||
|
{
|
|||
|
[XmlElement("left")]
|
|||
|
public double left;
|
|||
|
|
|||
|
[XmlElement("right")]
|
|||
|
public double right;
|
|||
|
|
|||
|
[XmlElement("top")]
|
|||
|
public double top;
|
|||
|
|
|||
|
[XmlElement("bottom")]
|
|||
|
public double bottom;
|
|||
|
}
|
|||
|
}
|