// Author: Gockner, Simon // 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(); } }