diff --git a/osu.Game/Database/LegacyModelExporter.cs b/osu.Game/Database/LegacyModelExporter.cs
index cf41ffc780..18e840fedd 100644
--- a/osu.Game/Database/LegacyModelExporter.cs
+++ b/osu.Game/Database/LegacyModelExporter.cs
@@ -95,6 +95,12 @@ namespace osu.Game.Database
}).ContinueWith(onComplete);
}
+ ///
+ /// Exports an item to Stream.
+ /// Override if custom export method is required.
+ ///
+ /// The item to export.
+ /// The output stream to export to.
protected virtual void ExportToStream(TModel model, Stream outputStream) => exportZipArchive(model, outputStream);
///