summaryrefslogtreecommitdiff
path: root/DiscoBot/Audio/Sound.cs
diff options
context:
space:
mode:
authorTrueDoctor <d-kobert@web.de>2018-06-15 10:07:53 +0200
committerTrueDoctor <d-kobert@web.de>2018-06-15 10:07:53 +0200
commit2bfbc16288454790f4c4cfa8ecace3518ee30059 (patch)
treea9ee7d86ee5f53c352e25092b08245e8d25fb042 /DiscoBot/Audio/Sound.cs
parent585f6f3bc93e47c6943b4e523b50f2a930314514 (diff)
did Sound stuff
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; }
}
}