diff --git a/Lib.ProcessManaging/Interfaces/IProcessManager.cs b/Lib.ProcessManaging/Interfaces/IProcessManager.cs index c28793a..8bb3683 100644 --- a/Lib.ProcessManaging/Interfaces/IProcessManager.cs +++ b/Lib.ProcessManaging/Interfaces/IProcessManager.cs @@ -2,10 +2,15 @@ // Created: 2021-04-16 // Copyright(c) 2021 SimonG. All Rights Reserved. +using System.Collections.Generic; +using System.Threading.Tasks; + namespace Lib.ProcessManaging.Interfaces { public interface IProcessManager { - + List Processes { get; } + + Task Initialize(); } } \ No newline at end of file