Track Entity
data class TrackEntity(val trackId: Int = 0, val name: String, val description: String?, val createdAt: Long)
Room database entity representing a Track.
This is the persistence-layer model stored in the local DB. It maps directly to the "tracks" table.