box-mgnt-note.md 590 B

dave note for any changes here

# Generate a new module
nest g module mgnt-backend/feature/video-medias --project box-mgnt-api
# Or generate a complete resource (module + controller + service + DTOs)
nest g resource mgnt-backend/feature/video-medias --project box-mgnt-api

video-medias/
├── dto/
│   ├── create-video-media.dto.ts
│   └── update-video-media.dto.ts
├── entities/
│   └── video-media.entity.ts
├── video-medias.controller.ts
├── video-medias.service.ts
└── video-medias.module.ts