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

15 lines
454 B
C#

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