mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-30 09:45:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			242 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			242 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Text;
 | |
| using HaXMLReader.Interfaces;
 | |
| 
 | |
| namespace HaXMLReader.EvArgs
 | |
| {
 | |
|     public class Text : EventArgs, IReaderEvArg
 | |
|     {
 | |
|         public string Value { get; set; } = "";
 | |
|     }
 | |
| }
 | 
