mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-11-03 19:55:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			454 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			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)>()
 | 
						|
    {
 | 
						|
    };
 | 
						|
} |