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

9 lines
111 B
C#

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