mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-31 10:15:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			638 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			638 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace HaDocument.Models {
 | |
|     public class Marginal : HaDocument.Interfaces.ISearchable {
 | |
|         public string Index { get; } = "";
 | |
|         public string Letter { get; } = "";
 | |
|         public string Page { get; } = "";
 | |
|         public string Line { get; } = "";
 | |
|         public string Element { get; } = "";
 | |
|         
 | |
|         public Marginal(
 | |
|             string index,
 | |
|             string letter,
 | |
|             string page,
 | |
|             string line,
 | |
|             string elemnt
 | |
|         ) {
 | |
|             Index = index;
 | |
|             Letter = letter;
 | |
|             Page = page;
 | |
|             Line = line;
 | |
|             Element = elemnt;
 | |
|         }
 | |
|     }
 | |
| } | 
