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

        public string Name { get; }

        public string Url { get; }
    }
}