// Author: Gockner, Simon // Created: 2021-04-07 // Copyright(c) 2021 SimonG. All Rights Reserved. using System.Collections.Generic; using Lib.Audio.Interfaces; namespace Lib.Audio { public class Device : IDevice { public List Channels { get; } } }