diff --git a/Attributes/SystemAttribute.cs b/Attributes/SystemAttribute.cs index 60671d8..deaafed 100644 --- a/Attributes/SystemAttribute.cs +++ b/Attributes/SystemAttribute.cs @@ -1,4 +1,4 @@ -using RedumpLib.Data; +using SabreTools.RedumpLib.Data; namespace SabreTools.RedumpLib.Attributes { diff --git a/Converters/DiscCategoryConverter.cs b/Converters/DiscCategoryConverter.cs index fd3fa6e..508906c 100644 --- a/Converters/DiscCategoryConverter.cs +++ b/Converters/DiscCategoryConverter.cs @@ -1,7 +1,7 @@ using System; using Newtonsoft.Json; using Newtonsoft.Json.Linq; -using RedumpLib.Data; +using SabreTools.RedumpLib.Data; namespace SabreTools.RedumpLib.Converters { diff --git a/Converters/DiscTypeConverter.cs b/Converters/DiscTypeConverter.cs index fdbe4ee..e1f824b 100644 --- a/Converters/DiscTypeConverter.cs +++ b/Converters/DiscTypeConverter.cs @@ -1,7 +1,7 @@ using System; using Newtonsoft.Json; using Newtonsoft.Json.Linq; -using RedumpLib.Data; +using SabreTools.RedumpLib.Data; namespace SabreTools.RedumpLib.Converters { diff --git a/Converters/LanguageConverter.cs b/Converters/LanguageConverter.cs index 2848f68..eae1dab 100644 --- a/Converters/LanguageConverter.cs +++ b/Converters/LanguageConverter.cs @@ -1,7 +1,7 @@ using System; using Newtonsoft.Json; using Newtonsoft.Json.Linq; -using RedumpLib.Data; +using SabreTools.RedumpLib.Data; namespace SabreTools.RedumpLib.Converters { diff --git a/Converters/LanguageSelectionConverter.cs b/Converters/LanguageSelectionConverter.cs index ea0762a..5bbb9e0 100644 --- a/Converters/LanguageSelectionConverter.cs +++ b/Converters/LanguageSelectionConverter.cs @@ -1,7 +1,7 @@ using System; using Newtonsoft.Json; using Newtonsoft.Json.Linq; -using RedumpLib.Data; +using SabreTools.RedumpLib.Data; namespace SabreTools.RedumpLib.Converters { diff --git a/Converters/RegionConverter.cs b/Converters/RegionConverter.cs index 48c79af..5cfa79d 100644 --- a/Converters/RegionConverter.cs +++ b/Converters/RegionConverter.cs @@ -1,7 +1,7 @@ using System; using Newtonsoft.Json; using Newtonsoft.Json.Linq; -using RedumpLib.Data; +using SabreTools.RedumpLib.Data; namespace SabreTools.RedumpLib.Converters { diff --git a/Converters/SystemConverter.cs b/Converters/SystemConverter.cs index aa1dd94..e88f659 100644 --- a/Converters/SystemConverter.cs +++ b/Converters/SystemConverter.cs @@ -1,7 +1,7 @@ using System; using Newtonsoft.Json; using Newtonsoft.Json.Linq; -using RedumpLib.Data; +using SabreTools.RedumpLib.Data; namespace SabreTools.RedumpLib.Converters { diff --git a/Converters/YesNoConverter.cs b/Converters/YesNoConverter.cs index ffe0534..de2ad2d 100644 --- a/Converters/YesNoConverter.cs +++ b/Converters/YesNoConverter.cs @@ -1,7 +1,7 @@ using System; using Newtonsoft.Json; using Newtonsoft.Json.Linq; -using RedumpLib.Data; +using SabreTools.RedumpLib.Data; namespace SabreTools.RedumpLib.Converters { diff --git a/Data/Enumerations.cs b/Data/Enumerations.cs index 3e63f51..34f7c8b 100644 --- a/Data/Enumerations.cs +++ b/Data/Enumerations.cs @@ -1,4 +1,4 @@ -using RedumpLib.Attributes; +using SabreTools.RedumpLib.Attributes; namespace SabreTools.RedumpLib.Data { diff --git a/Data/Extensions.cs b/Data/Extensions.cs index 9ba7956..e7b8c59 100644 --- a/Data/Extensions.cs +++ b/Data/Extensions.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; using System.Linq; -using RedumpLib.Attributes; +using SabreTools.RedumpLib.Attributes; namespace SabreTools.RedumpLib.Data { diff --git a/Data/SubmissionInfo.cs b/Data/SubmissionInfo.cs index 5cf03f4..4cbc626 100644 --- a/Data/SubmissionInfo.cs +++ b/Data/SubmissionInfo.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Linq; using Newtonsoft.Json; -using RedumpLib.Converters; +using SabreTools.RedumpLib.Converters; namespace SabreTools.RedumpLib.Data { diff --git a/Web/RedumpHttpClient.cs b/Web/RedumpHttpClient.cs index ae2648f..13bc897 100644 --- a/Web/RedumpHttpClient.cs +++ b/Web/RedumpHttpClient.cs @@ -9,7 +9,7 @@ using System.Net.Http.Headers; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; -using RedumpLib.Data; +using SabreTools.RedumpLib.Data; namespace SabreTools.RedumpLib.Web { diff --git a/Web/RedumpWebClient.cs b/Web/RedumpWebClient.cs index ac648d5..00bf6f6 100644 --- a/Web/RedumpWebClient.cs +++ b/Web/RedumpWebClient.cs @@ -6,7 +6,7 @@ using System.IO; using System.Net; using System.Text; using System.Text.RegularExpressions; -using RedumpLib.Data; +using SabreTools.RedumpLib.Data; namespace SabreTools.RedumpLib.Web {