- add initialize method and processes property

master
Simon G 5 years ago
parent fff2fdec2a
commit 54264b9431
  1. 7
      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<IObservedProcess> Processes { get; }
Task Initialize();
}
}
Loading…
Cancel
Save