summaryrefslogtreecommitdiff
path: root/DiscoBot/Audio/Sound.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DiscoBot/Audio/Sound.cs')
-rw-r--r--DiscoBot/Audio/Sound.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/DiscoBot/Audio/Sound.cs b/DiscoBot/Audio/Sound.cs
new file mode 100644
index 0000000..174c076
--- /dev/null
+++ b/DiscoBot/Audio/Sound.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace DiscoBot.Audio
+{
+ public class Sound
+ {
+ public Sound(string name, string url)
+ {
+ Name = name;
+ Url = url;
+ }
+
+ public string Name { get; }
+
+ public string Url { get; }
+ }
+}