Station Management API

Full CRUD operations for railway stations.

**GET /stations/** - List all stations
**POST /stations/** - Create new station
**GET /stations/{id}/** - Get station details
**PUT /stations/{id}/** - Update station
**DELETE /stations/{id}/** - Delete station

**Custom Actions:**
- GET /stations/{id}/cameras/ - Get cameras at station
- GET /stations/{id}/dustbins/ - Get dustbins at station
- GET /stations/{id}/summary/ - Get dashboard statistics

GET /api/v1/stations/?format=api&ordering=name
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 1,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 1,
            "name": "Kamlapur Railway Station",
            "code": "KPS",
            "district": "Dhaka",
            "is_active": true,
            "total_cameras": 1
        }
    ]
}
Full station name
Unique station code (e.g., KPS, DKA)
District/City name
Full street address
GPS latitude coordinate
GPS longitude coordinate
Station contact email
Contact phone number
Is station active?