Files
MainSoftware/ProtokollWriterContract/IProtokollWriter.cs
Husky 709f16ad47 Protokollwriter weitergeführt
Lässt sich noch nicht bauen!
2021-02-23 22:03:48 +01:00

8 lines
178 B
C#

using System;
using Models;
namespace ProtokollWriterContract {
public interface IProtokollWriter {
void WriteProtokoll(Inspektionsobjekt inspektionsobjekt);
}
}