20 lines
349 B
C#
20 lines
349 B
C#
![]() |
using System;
|
|||
|
using System.Reflection;
|
|||
|
using System.Xml.Serialization;
|
|||
|
|
|||
|
namespace CPF.ReoGrid.XML
|
|||
|
{
|
|||
|
[Obfuscation(Feature = "renaming", Exclude = true)]
|
|||
|
public class RGXmlMeta
|
|||
|
{
|
|||
|
[XmlElement("culture")]
|
|||
|
public string culture;
|
|||
|
|
|||
|
[XmlElement("editor")]
|
|||
|
public string editor;
|
|||
|
|
|||
|
[XmlElement("core-ver")]
|
|||
|
public string controlVersion;
|
|||
|
}
|
|||
|
}
|