mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
Build 130105
This commit is contained in:
19
DrumKit/Domain/SoundSource.cs
Normal file
19
DrumKit/Domain/SoundSource.cs
Normal file
@ -0,0 +1,19 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user