From 2d7b4b456832a6f76c56eac0e92e051cb1759e85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20=C3=87elik?= Date: Tue, 23 Sep 2025 17:54:34 +0300 Subject: [PATCH] Move TableOfContents files to application layer Relocated ITocGeneratorService and TocHeading to the Application.Contracts project, and TocGeneratorService to the Application project. This improves project structure by separating contracts and implementations from the web layer. --- .../Volo/Docs}/TableOfContents/ITocGeneratorService.cs | 0 .../Volo/Docs}/TableOfContents/TocHeading.cs | 0 .../Volo/Docs}/TableOfContents/TocGeneratorService.cs | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename modules/docs/src/{Volo.Docs.Web => Volo.Docs.Application.Contracts/Volo/Docs}/TableOfContents/ITocGeneratorService.cs (100%) rename modules/docs/src/{Volo.Docs.Web => Volo.Docs.Application.Contracts/Volo/Docs}/TableOfContents/TocHeading.cs (100%) rename modules/docs/src/{Volo.Docs.Web => Volo.Docs.Application/Volo/Docs}/TableOfContents/TocGeneratorService.cs (100%) diff --git a/modules/docs/src/Volo.Docs.Web/TableOfContents/ITocGeneratorService.cs b/modules/docs/src/Volo.Docs.Application.Contracts/Volo/Docs/TableOfContents/ITocGeneratorService.cs similarity index 100% rename from modules/docs/src/Volo.Docs.Web/TableOfContents/ITocGeneratorService.cs rename to modules/docs/src/Volo.Docs.Application.Contracts/Volo/Docs/TableOfContents/ITocGeneratorService.cs diff --git a/modules/docs/src/Volo.Docs.Web/TableOfContents/TocHeading.cs b/modules/docs/src/Volo.Docs.Application.Contracts/Volo/Docs/TableOfContents/TocHeading.cs similarity index 100% rename from modules/docs/src/Volo.Docs.Web/TableOfContents/TocHeading.cs rename to modules/docs/src/Volo.Docs.Application.Contracts/Volo/Docs/TableOfContents/TocHeading.cs diff --git a/modules/docs/src/Volo.Docs.Web/TableOfContents/TocGeneratorService.cs b/modules/docs/src/Volo.Docs.Application/Volo/Docs/TableOfContents/TocGeneratorService.cs similarity index 100% rename from modules/docs/src/Volo.Docs.Web/TableOfContents/TocGeneratorService.cs rename to modules/docs/src/Volo.Docs.Application/Volo/Docs/TableOfContents/TocGeneratorService.cs