From b411aa2128c2724bec0ecedb8cb4e1ffa59f3b53 Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Wed, 26 Sep 2018 20:51:37 +0200 Subject: disconnected most vital calles from the Discord Bot --- DSACore/Audio/Sound.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 DSACore/Audio/Sound.cs (limited to 'DSACore/Audio/Sound.cs') diff --git a/DSACore/Audio/Sound.cs b/DSACore/Audio/Sound.cs new file mode 100644 index 0000000..d259850 --- /dev/null +++ b/DSACore/Audio/Sound.cs @@ -0,0 +1,18 @@ +namespace DSACore.Audio +{ + public class Sound + { + public Sound(string name, string url, int volume) + { + this.Name = name; + this.Url = url; + this.Volume = volume; + } + + public string Name { get; } + + public string Url { get; } + + public int Volume { get; } + } +} -- cgit v1.2.3-54-g00ecf