removed unused usings

This commit is contained in:
Master Kwoth
2016-02-08 00:54:42 +01:00
parent a644a5857c
commit 39e58bd6cc
17 changed files with 6 additions and 59 deletions

View File

@@ -1,9 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using SQLite;
using NadekoBot.Classes._DataModels;

View File

@@ -5,7 +5,6 @@ using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;

View File

@@ -1,10 +1,7 @@
using NadekoBot.Extensions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
// THANKS @ShoMinamimoto for suggestions and coding help
namespace NadekoBot.Classes.Trivia {

View File

@@ -3,8 +3,6 @@ using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NadekoBot.Classes.Trivia {
public class TriviaQuestionPool {

View File

@@ -1,10 +1,5 @@
using Newtonsoft.Json;
using SQLite;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NadekoBot.Classes._DataModels {
class Announcement : IDataModel {

View File

@@ -1,9 +1,4 @@
using SQLite;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System;
namespace NadekoBot.Classes._DataModels {
class Command : IDataModel {

View File

@@ -1,9 +1,4 @@
using SQLite;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System;
namespace NadekoBot.Classes._DataModels {
class Request : IDataModel {

View File

@@ -1,9 +1,4 @@
using SQLite;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System;
namespace NadekoBot.Classes._DataModels {
class Stats : IDataModel {

View File

@@ -1,15 +1,9 @@
using Newtonsoft.Json;
using SQLite;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System;
namespace NadekoBot.Classes._DataModels {
class TypingArticle : IDataModel {
public string Text { get; set; }
[JsonProperty("createdAt")]
[Newtonsoft.Json.JsonProperty("createdAt")]
public DateTime DateAdded { get; set; }
}
}