11 lines
247 B
C#
11 lines
247 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" );
|
||
|
}
|
||
|
}
|