Files
hamann-ausgabe-core/HaWeb/Settings/NodeRules/SubsectionNode.cs
2023-09-10 01:09:20 +02:00

18 lines
536 B
C#

namespace HaWeb.Settings.NodeRules;
using System.Collections.Generic;
using HaWeb.XMLTests;
public class SubsectionNode : INodeRule
{
public string Name => "subsection";
public HamannXPath XPath => new HamannXPath() {
Documents = new[] { "register" },
XPath = "//subsection"
};
public string[]? Attributes { get; } = { "id" };
public string? uniquenessAttribute => "id" ;
public List<(string, HamannXPath, string)>? References { get; } = new List<(string, HamannXPath, string)>()
{
};
}