mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-31 10:15:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			537 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			537 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace HaWeb.Settings.NodeRules;
 | |
| 
 | |
| using System.Collections.Generic;
 | |
| using HaWeb.XMLTests;
 | |
| 
 | |
| public class AutopsicNode : INodeRule
 | |
| {
 | |
|     public string Name => "autopsic";
 | |
|     public HamannXPath XPath => new HamannXPath() {
 | |
|         Documents = new[] { "metadaten" },
 | |
|         XPath = "//autopsic"
 | |
|     };
 | |
|     public string[]? Attributes { get; } = { "value" };
 | |
|     public string? uniquenessAttribute => "value" ;
 | |
|     public List<(string, HamannXPath, string)>? References { get; } = new List<(string, HamannXPath, string)>()
 | |
|     {
 | |
|     };
 | |
| } | 
