mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 09:15:33 +00:00
Erste checks
This commit is contained in:
15
HaWeb/Settings/NodeRules/LetterTraditionNode.cs
Normal file
15
HaWeb/Settings/NodeRules/LetterTraditionNode.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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)>()
|
||||
{
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user