Files
hamann-ausgabe-core/HaWeb/XMLTests/InodeRule.cs
2023-09-10 01:09:20 +02:00

9 lines
328 B
C#

namespace HaWeb.XMLTests;
public interface INodeRule {
public string Name { get; }
public HamannXPath XPath { get; }
public string? uniquenessAttribute { get; }
public List<(string LinkAttribute, HamannXPath RemoteElement, string RemoteAttribute)>? References { get; }
public string[]? Attributes { get; }
}