18 lines
255 B
C#
18 lines
255 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace CPF.ReoGrid.XML
|
|
{
|
|
public class RGXmlNamedRange
|
|
{
|
|
[XmlAttribute("name")]
|
|
public string name;
|
|
|
|
[XmlAttribute("address")]
|
|
public string address;
|
|
|
|
[XmlText]
|
|
public string comment;
|
|
}
|
|
}
|