mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
17 lines
328 B
C#
17 lines
328 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Xml.Serialization;
|
|||
|
|
|||
|
namespace DrumKit
|
|||
|
{
|
|||
|
[XmlType("drumkitConfig")]
|
|||
|
public class DrumkitConfig
|
|||
|
{
|
|||
|
[XmlArray("drums")]
|
|||
|
public List<DrumConfig> Drums { get; set; }
|
|||
|
}
|
|||
|
}
|