mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-30 09:45:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			457 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			457 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace HaInformator
 | |
| {
 | |
|     public abstract class HaControl
 | |
|     {
 | |
|         public enum HaControlResult
 | |
|         {
 | |
|             OK,
 | |
|             Error
 | |
|         }
 | |
| 
 | |
|         public string Description { get; internal set; }
 | |
|         public Logger Logger { get; internal set; }
 | |
| 
 | |
|         public abstract HaControlResult Act(string fiepath);
 | |
|     }
 | |
| }
 | 
