mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-31 02:05:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			548 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			548 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace HaDocument.Models;
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Text;
 | |
| 
 | |
| public class ZHInfo {
 | |
|     public bool? alternativeLineNumbering { get; }
 | |
|     public bool? dateChanged { get; }
 | |
|     public string Volume { get; }
 | |
|     public string Page { get; }
 | |
| 
 | |
|     public ZHInfo(string Volume, string Page, bool? alternativeLineNumbering, bool? dateChanged) {
 | |
|         this.alternativeLineNumbering = alternativeLineNumbering;
 | |
|         this.dateChanged = dateChanged;
 | |
|         this.Volume = Volume;
 | |
|         this.Page = Page;
 | |
|     }
 | |
| }
 | |
| 
 | 
