From 380d9ec6048663b0e497e2437222d783236b864f Mon Sep 17 00:00:00 2001 From: TrueDoctor Date: Fri, 15 Jun 2018 09:58:24 +0200 Subject: Added Properties Class auto load last settings removed sound enumerable moved Sonds to properties moved Commands to properties --- DiscoBot/Audio/Sound.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 DiscoBot/Audio/Sound.cs (limited to 'DiscoBot/Audio/Sound.cs') diff --git a/DiscoBot/Audio/Sound.cs b/DiscoBot/Audio/Sound.cs new file mode 100644 index 0000000..174c076 --- /dev/null +++ b/DiscoBot/Audio/Sound.cs @@ -0,0 +1,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; } + } +} -- cgit v1.2.3-70-g09d2