This repository has been archived on 2024-06-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
thesis-src/Implementation/CLI/Monitor/ITaskMonitor.cs
T
2024-01-08 16:23:24 +01:00

9 lines
115 B
C#

namespace Ocr.Cli.Monitor;
public interface ITaskMonitor
{
TimeSpan Interval { get; init; }
Task Run();
}