diff --git a/Lombiq.Hosting.Tenants.Maintenance/Services/ICustomMaintenanceHandler.cs b/Lombiq.Hosting.Tenants.Maintenance/Services/ICustomMaintenanceHandler.cs
deleted file mode 100644
index ea69d095..00000000
--- a/Lombiq.Hosting.Tenants.Maintenance/Services/ICustomMaintenanceHandler.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using Lombiq.Hosting.Tenants.Maintenance.Models;
-using System.Threading.Tasks;
-
-namespace Lombiq.Hosting.Tenants.Maintenance.Services;
-
-///
-/// Implementations of this interface can be used to execute custom maintenance tasks.
-///
-public interface ICustomMaintenanceHandler
-{
- ///
- /// Executes the maintenance logic.
- ///
- Task ExecuteAsync(MaintenanceTaskExecutionContext context);
-}