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.cs9
1 files changed, 6 insertions, 3 deletions
diff --git a/DiscoBot/Audio/Sound.cs b/DiscoBot/Audio/Sound.cs
index 174c076..a9a2768 100644
--- a/DiscoBot/Audio/Sound.cs
+++ b/DiscoBot/Audio/Sound.cs
@@ -8,14 +8,17 @@ namespace DiscoBot.Audio
{
public class Sound
{
- public Sound(string name, string url)
+ public Sound(string name, string url, int volume)
{
- Name = name;
- Url = url;
+ this.Name = name;
+ this.Url = url;
+ this.Volume = volume;
}
public string Name { get; }
public string Url { get; }
+
+ public int Volume { get; }
}
}