I'm trying to create a room entity where the colum...
# android
a
I'm trying to create a room entity where the columninfo names are declared in a different class. Before I've done this
Copy code
class DevicesTable {
    companion object {
        const val name = "devices"

        const val id = BaseColumns._ID
        const val serial = "deviceId"
    }
}