2024-10-25 06:28:58 +00:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
|
|
namespace Rokojori
|
|
|
|
{
|
|
|
|
public class SVGAttributeName
|
|
|
|
{
|
|
|
|
public static readonly XMLAttributeName d = XMLAttributeName.Create( "d" );
|
2025-02-12 16:48:15 +00:00
|
|
|
public static readonly XMLAttributeName style = XMLAttributeName.Create( "style" );
|
2024-10-25 06:28:58 +00:00
|
|
|
}
|
|
|
|
}
|