mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 17:25:32 +00:00
Erste checks
This commit is contained in:
16
HaWeb/Settings/NodeRules/ReceiverNode.cs
Normal file
16
HaWeb/Settings/NodeRules/ReceiverNode.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace HaWeb.Settings.NodeRules;
|
||||
|
||||
using System.Collections.Generic;
|
||||
using HaWeb.XMLTests;
|
||||
|
||||
public class Receiver : INodeRule
|
||||
{
|
||||
public string Name => "receiver";
|
||||
public string XPath => "//receiver";
|
||||
public string[]? Attributes { get; } = { "ref" };
|
||||
public string? uniquenessAttribute => null;
|
||||
public List<(string, string, string)>? References { get; } = new List<(string, string, string)>()
|
||||
{
|
||||
("ref", "//personDef", "index")
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user