rj-action-library/Runtime/XML/SVG/SVGAttributeName.cs

12 lines
335 B
C#

using System.Collections;
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace Rokojori
{
public class SVGAttributeName
{
public static readonly XMLAttributeName d = XMLAttributeName.Create( "d" );
public static readonly XMLAttributeName style = XMLAttributeName.Create( "style" );
}
}