What problem does it solve? Manually writing DTO classes, nested DTOs, and response wrappers for every entity in a .NET microservice is repetitive and error-prone, especially when enforcing conventions like Guid-to-string conversion and conditional nested includes. ## Core Features & Use Cases - DTO Scaffolding: Generates a main entity DTO with Guid-to-string Id conversion, audit fields, and soft-delete fields. - Response Wrappers: Creates CommonResponse-based wrappers for list, detail, create, update, delete, and restore endpoints, with PaginationResponse for list endpoints. - Inline Mapping Guidance: Provides handler mapping examples including nullable Guid conversion and conditional nested DTO includes, with no AutoMapper dependency. - Use Case: When adding a new Battery entity to BatteryService, run the scaffold to produce BatteryDTO plus all response wrappers following the project's shared conventions. ## Quick Start Ask the AI to scaffold DTOs for a service and entity, for example: run /scaffold-dto BatteryService Battery to generate the DTO and response wrapper files.