Last active
October 21, 2018 10:41
-
-
Save vamsitallapudi/ddf9315d4553555e98c1cef8ef2411ce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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