2024-10-25 06:28:58 +00:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
2026-05-22 12:25:02 +00:00
|
|
|
using Rokojori.Extensions;
|
2024-10-25 06:28:58 +00:00
|
|
|
namespace Rokojori
|
|
|
|
|
{
|
|
|
|
|
public class SVGElementName
|
|
|
|
|
{
|
|
|
|
|
public static readonly XMLElementNodeName svg = XMLElementNodeName.Create( "svg" );
|
|
|
|
|
public static readonly XMLElementNodeName g = XMLElementNodeName.Create( "g" );
|
|
|
|
|
public static readonly XMLElementNodeName rect = XMLElementNodeName.Create( "rect" );
|
|
|
|
|
public static readonly XMLElementNodeName path = XMLElementNodeName.Create( "path" );
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|