mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
20 lines
381 B
C#
20 lines
381 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("sound")]
|
|
public class SoundSource
|
|
{
|
|
[XmlAttribute("intensity")]
|
|
public int Intensity { get; set; }
|
|
|
|
[XmlText()]
|
|
public string Source { get; set; }
|
|
}
|
|
}
|