using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Svg
{
///
/// Specifies the SVG name of an .
///
[AttributeUsage(AttributeTargets.Class)]
public sealed class SvgElementAttribute : Attribute
{
///
/// Gets the name of the SVG element.
///
public string ElementName { get; private set; }
///
/// Initializes a new instance of the class with the specified element name;
///
/// The name of the SVG element.
public SvgElementAttribute(string elementName)
{
this.ElementName = elementName;
}
}
}