// Author: Gockner, Simon // Created: 2021-04-07 // Copyright(c) 2021 SimonG. All Rights Reserved. using System.Collections.Generic; using Lib.Audio.Controls.Interfaces; using Lib.Audio.Interfaces; namespace Lib.Audio { public class Channel : IChannel { public IFader Fader { get; } public IKnob Knob { get; } public List Buttons { get; } public IControllable Controllable { get; } } }