CPF/CPF.ReoGrid/XML/RGXmlMargins.cs

23 lines
378 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
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;
}
}