## What feature would you like to see? In Firestore there's `@DocumentId`, a useful annotation to assign document id to a class automatically. Can this be implemented for Firebase Database? ## How would you use it? ```kotlin data class User( @DocumentId val userId: String = "" // ... other fields ) ```