src/main/kotlin/de/uapcore/lightpit/viewmodel/Feeds.kt

changeset 198
94f174d591ab
parent 195
9c7aff3cbb14
child 199
59393c8cc557
     1.1 --- a/src/main/kotlin/de/uapcore/lightpit/viewmodel/Feeds.kt	Thu May 13 18:01:56 2021 +0200
     1.2 +++ b/src/main/kotlin/de/uapcore/lightpit/viewmodel/Feeds.kt	Thu May 13 19:31:09 2021 +0200
     1.3 @@ -28,6 +28,11 @@
     1.4  import de.uapcore.lightpit.entities.Issue
     1.5  import de.uapcore.lightpit.entities.Project
     1.6  
     1.7 +class ProjectFeed(
     1.8 +    val projects: List<Project>
     1.9 +) : View()
    1.10 +
    1.11  class IssueFeed(
    1.12 -    val issues: Map<Project, List<Issue>>
    1.13 +    val project: Project,
    1.14 +    val issues: List<Issue>
    1.15  ) : View()
    1.16 \ No newline at end of file

mercurial