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.cs16
1 files changed, 5 insertions, 11 deletions
diff --git a/DiscoBot/Audio/Sound.cs b/DiscoBot/Audio/Sound.cs
index a9a2768..85023c8 100644
--- a/DiscoBot/Audio/Sound.cs
+++ b/DiscoBot/Audio/Sound.cs
@@ -1,18 +1,12 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace DiscoBot.Audio
+namespace DiscoBot.Audio
{
public class Sound
{
public Sound(string name, string url, int volume)
{
- this.Name = name;
- this.Url = url;
- this.Volume = volume;
+ Name = name;
+ Url = url;
+ Volume = volume;
}
public string Name { get; }
@@ -21,4 +15,4 @@ namespace DiscoBot.Audio
public int Volume { get; }
}
-}
+} \ No newline at end of file