QRBee/QRBee.Load.Generator/IAnomalyReporter.cs
2023-07-22 12:55:36 +01:00

7 lines
160 B
C#

namespace QRBee.Load.Generator
{
internal interface IAnomalyReporter
{
void Report(DateTime start, DateTime end, string description);
}
}