- add initialize method and processes property

master
Simon G 5 years ago
parent fff2fdec2a
commit 54264b9431
  1. 5
      Lib.ProcessManaging/Interfaces/IProcessManager.cs

@ -2,10 +2,15 @@
// Created: 2021-04-16 // Created: 2021-04-16
// Copyright(c) 2021 SimonG. All Rights Reserved. // Copyright(c) 2021 SimonG. All Rights Reserved.
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Lib.ProcessManaging.Interfaces namespace Lib.ProcessManaging.Interfaces
{ {
public interface IProcessManager public interface IProcessManager
{ {
List<IObservedProcess> Processes { get; }
Task Initialize();
} }
} }
Loading…
Cancel
Save