summaryrefslogtreecommitdiff
path: root/DiscoBot/Audio/Sound.cs
blob: 85023c878eba22286220abc2293f82e85f896137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace DiscoBot.Audio
{
    public class Sound
    {
        public Sound(string name, string url, int volume)
        {
            Name = name;
            Url = url;
            Volume = volume;
        }

        public string Name { get; }

        public string Url { get; }

        public int Volume { get; }
    }
}