13 lines
362 B
C#
13 lines
362 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Text.RegularExpressions;
|
|
|
|
using Rokojori.Extensions;
|
|
namespace Rokojori
|
|
{
|
|
public class SVGAttributeName
|
|
{
|
|
public static readonly XMLAttributeName d = XMLAttributeName.Create( "d" );
|
|
public static readonly XMLAttributeName style = XMLAttributeName.Create( "style" );
|
|
}
|
|
} |