mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-11-04 04:05:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			545 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			545 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace HaWeb.Settings.NodeRules;
 | 
						|
 | 
						|
using System.Collections.Generic;
 | 
						|
using HaWeb.XMLTests;
 | 
						|
 | 
						|
public class LetterDescNode : INodeRule
 | 
						|
{
 | 
						|
    public string Name => "letterDesc";
 | 
						|
    public HamannXPath XPath => new HamannXPath() {
 | 
						|
        Documents = new[] { "metadaten" },
 | 
						|
        XPath = "//letterDesc"
 | 
						|
    };
 | 
						|
    public string[]? Attributes { get; } = { "letter" };
 | 
						|
    public string? uniquenessAttribute => "letter" ;
 | 
						|
    public List<(string, HamannXPath, string)>? References { get; } = new List<(string, HamannXPath, string)>()
 | 
						|
    {
 | 
						|
    };
 | 
						|
} |