rj-action-library/Runtime/XML/Nodes/XMLDocumentFragmentNode.cs

12 lines
296 B
C#

using System.Collections;
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace Rokojori
{
public class XMLDocumentFragmentNode:XMLNode
{
public XMLDocumentFragmentNode( XMLDocument document ):base( document, XMLNode.NodeType.DocumentFragment )
{}
}
}