// Author: Gockner, Simon // Created: 2021-04-09 // Copyright(c) 2021 SimonG. All Rights Reserved. using System.Collections.Generic; using System.Xml.Serialization; namespace Lib.Driver.Xml { [XmlRoot("MidiDevice")] public class XmlDriver { [XmlArray("Channels")] [XmlArrayItem("Channel", typeof(XmlChannel))] public List Channels { get; set; } } }