diff --git a/src/AdvancedBot.Core/Entities/Account.cs b/src/AdvancedBot.Core/Entities/Account.cs index 544b272..0cde42a 100644 --- a/src/AdvancedBot.Core/Entities/Account.cs +++ b/src/AdvancedBot.Core/Entities/Account.cs @@ -1,4 +1,3 @@ -using System; using System.Collections.Generic; namespace AdvancedBot.Core.Entities @@ -12,9 +11,6 @@ public class Account public List CommandStats { get; set; } = new List(); public List ChannelCounters { get; set; } = new List(); - [Obsolete] - public Account() { } - public Account(ulong id, bool isGuild) { Id = id; diff --git a/src/AdvancedBot.Core/Entities/CommandInfo.cs b/src/AdvancedBot.Core/Entities/CommandInfo.cs index 026f11c..f35dfce 100644 --- a/src/AdvancedBot.Core/Entities/CommandInfo.cs +++ b/src/AdvancedBot.Core/Entities/CommandInfo.cs @@ -1,12 +1,7 @@ -using System; - namespace AdvancedBot.Core.Entities { public class CommandStats { - [Obsolete] - public CommandStats() { } - public CommandStats(string name) { Name = name;