Commit 30b0cdde authored by Vladislav Bogdashkin's avatar Vladislav Bogdashkin 🎣

added feeds models

parent 80a64b05
package com.biganto.visual.roompark.domain.model
import java.util.*
/**
* Created by Vladislav Bogdashkin on 23.09.2019.
*/
data class FeedModel(val feedId:Int, val title:String, val alias:String? = null)
data class FeedsHeaderModel(val feeds:List<FeedModel>)
data class ArticlePreviewModel(
val articleId:Int,
val published: Date,
val title:String,
val announce:String,
val previewUrl:String,
val isRead:Boolean
)
data class ArticlesPreviewModel(val parentFeedId:Int,val articles:List<ArticlePreviewModel>)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment