diff --git a/osu.Game/Beatmaps/BeatmapManager.cs b/osu.Game/Beatmaps/BeatmapManager.cs
index e124e38dd9..023b6c74ea 100644
--- a/osu.Game/Beatmaps/BeatmapManager.cs
+++ b/osu.Game/Beatmaps/BeatmapManager.cs
@@ -25,7 +25,7 @@ namespace osu.Game.Beatmaps
///
/// Handles the storage and retrieval of Beatmaps/WorkingBeatmaps.
///
- public partial class BeatmapManager : ArchiveDownloadModelManager
+ public partial class BeatmapManager : DownloadableArchiveModelManager
{
///
/// Fired when a single difficulty has been hidden.
diff --git a/osu.Game/Database/ArchiveDownloadModelManager.cs b/osu.Game/Database/DownloadableArchiveModelManager.cs
similarity index 94%
rename from osu.Game/Database/ArchiveDownloadModelManager.cs
rename to osu.Game/Database/DownloadableArchiveModelManager.cs
index ded44337dd..71bbbc4f78 100644
--- a/osu.Game/Database/ArchiveDownloadModelManager.cs
+++ b/osu.Game/Database/DownloadableArchiveModelManager.cs
@@ -18,7 +18,7 @@ namespace osu.Game.Database
///
/// The model type.
/// The associated file join type.
- public abstract class ArchiveDownloadModelManager : ArchiveModelManager, IModelDownloader
+ public abstract class DownloadableArchiveModelManager : ArchiveModelManager, IModelDownloader
where TModel : class, IHasFiles, IHasPrimaryKey, ISoftDelete
where TFileModel : INamedFileInfo, new()
{
@@ -32,7 +32,7 @@ namespace osu.Game.Database
private readonly MutableDatabaseBackedStoreWithFileIncludes modelStore;
- protected ArchiveDownloadModelManager(Storage storage, IDatabaseContextFactory contextFactory, IAPIProvider api, MutableDatabaseBackedStoreWithFileIncludes modelStore, IIpcHost importHost = null)
+ protected DownloadableArchiveModelManager(Storage storage, IDatabaseContextFactory contextFactory, IAPIProvider api, MutableDatabaseBackedStoreWithFileIncludes modelStore, IIpcHost importHost = null)
: base(storage, contextFactory, modelStore, importHost)
{
this.api = api;