This commit is contained in:
2026-06-10 18:22:27 +02:00
parent 7f31b63aaa
commit 83b475987c
50 changed files with 2550 additions and 11 deletions
+10
View File
@@ -0,0 +1,10 @@
---
globs: src/Logic/**/DTO/*
description: This rule ensures that all DTO (Data Transfer Object) files are
correctly placed within the Logic layer according to the feature-based
architecture, with proper naming conventions for feature directories and clear
separation of data transfer objects.
alwaysApply: true
---
All DTO files in the Logic layer must be placed within /src/Logic/[FeatureName]/DTO directory, where [FeatureName] is a valid feature-specific subdirectory. If the FeatureName is unknown or ambiguous, developers must actively provide a proper feature name rather than defaulting to 'Unknown'.