Files
hamann-ausgabe-core/HaWeb/XMLTests/InodeRule.cs
Simon Martens 0ef63bfde4 Erste checks
2023-05-11 01:00:26 +02:00

9 lines
318 B
C#

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