From 54264b9431cfca5b593f359db76179df4c33e84a Mon Sep 17 00:00:00 2001 From: Simon G Date: Thu, 22 Apr 2021 15:40:38 +0200 Subject: [PATCH] - add initialize method and processes property --- Lib.ProcessManaging/Interfaces/IProcessManager.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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