Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Room Park Android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vladislav Bogdashkin
Room Park Android
Commits
30b0cdde
Commit
30b0cdde
authored
Sep 23, 2019
by
Vladislav Bogdashkin
🎣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added feeds models
parent
80a64b05
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
feeds.kt
...in/java/com/biganto/visual/roompark/domain/model/feeds.kt
+23
-0
No files found.
app/src/main/java/com/biganto/visual/roompark/domain/model/feeds.kt
0 → 100644
View file @
30b0cdde
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment