Skip to content

Instantly share code, notes, and snippets.

@vamsitallapudi
Last active October 21, 2018 10:41
Show Gist options
  • Save vamsitallapudi/ddf9315d4553555e98c1cef8ef2411ce to your computer and use it in GitHub Desktop.
Save vamsitallapudi/ddf9315d4553555e98c1cef8ef2411ce to your computer and use it in GitHub Desktop.
import java.util.Date
data class News(
val id:Int=0,
val news_title:String?=null,
var news_detail: String? = null,
var news_image_url: String? = null,
var news_url: String? = null,
var news_source: String? = null,
var pub_date: Date? = null
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment