summaryrefslogtreecommitdiff
path: root/DiscoBot/Audio/Sound.cs
blob: a9a2768a48be5dc480e7eb3552d8b3baf01681bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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, int volume)
        {
            this.Name = name;
            this.Url = url;
            this.Volume = volume;
        }

        public string Name { get; }

        public string Url { get; }

        public int Volume { get; }
    }
}