mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 17:25:32 +00:00
Initial replacement of old repository.
This commit is contained in:
22
HaInformator/HaControl.cs
Normal file
22
HaInformator/HaControl.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user