//Retrofit and Gson
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("com.squareup.retrofit2:converter-gson:2.9.0")
// OkHttp and Logging Interceptor
implementation("com.squareup.okhttp3:okhttp:4.9.1")
implementation("com.squareup.okhttp3:logging-interceptor:4.9.1")
data class VideoItem(
val title: String,
val thumbnail: Int,
val channelProfileImage: Int,
val channelName: String,
val viewsAndDate: String
)