mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-30 17:55:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			547 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			547 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace HaWeb.XMLTests;
 | |
| using HaWeb.Models;
 | |
| using System.Xml.Linq;
 | |
| 
 | |
| public interface ICollectionRule {
 | |
|     public string Name { get; }
 | |
|     public HamannXPath[] Bases { get; }
 | |
|     public HamannXPath[] Backlinks { get; }
 | |
|     public IEnumerable<(string, XElement, XMLRootDocument)> GenerateIdentificationStrings(IEnumerable<(XElement, XMLRootDocument)> List);
 | |
|     public IEnumerable<(string, XElement, XMLRootDocument, bool)> GenerateBacklinkString(IEnumerable<(XElement, XMLRootDocument)> List);
 | |
|     public bool CheckDatatypes(XElement element);
 | |
| } | 
