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/Examples/CLI/Monitor/ITaskMonitor.cs
T
2023-11-22 15:23:23 +01:00

9 lines
111 B
C#

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