This commit is contained in:
2011-10-14 10:43:47 +00:00
parent 7af8870639
commit c04081d056
5 changed files with 48 additions and 0 deletions

View File

@@ -23,6 +23,16 @@ namespace Volian.Svg.Library
}
//XMLElementAttribute(ElementName = "PREFIX", IsNullable = false)
#endregion
#region Description
private string _Description = string.Empty;
[System.ComponentModel.DefaultValueAttribute("")]
[XmlElement("desc")]
public string Description
{
get { return _Description; }
set { _Description = value; }
}
#endregion
#region Location
private SvgMeasurement _X = new SvgMeasurement();
[XmlIgnore]