mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-31 18:25:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			453 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			453 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace HaWeb.Settings.NodeRules;
 | |
| 
 | |
| using System.Collections.Generic;
 | |
| using HaWeb.XMLTests;
 | |
| 
 | |
| public class AppNode : INodeRule
 | |
| {
 | |
|     public string Name => "app";
 | |
|     public string XPath => "//app";
 | |
|     public string[]? Attributes { get; } = { "ref" };
 | |
|     public string? uniquenessAttribute => null;
 | |
|     public List<(string, string, string)>? References { get; } = new List<(string, string, string)>()
 | |
|     {
 | |
|         ("ref", "//appDef", "index")
 | |
|     };
 | |
| } | 
