// Author: Gockner, Simon // Created: 2021-04-09 // Copyright(c) 2021 SimonG. All Rights Reserved. using Lib.Midi.Interfaces; namespace Lib.Midi.Factories { public interface IMidiCommunicationFactory { IMidiCommunication Create(); } }