1+ package com.flint.domain.model.search
2+
3+ import kotlinx.collections.immutable.ImmutableList
4+ import kotlinx.collections.immutable.persistentListOf
5+
6+ data class SearchContentItemModel (
7+ val id : String ,
8+ val title : String ,
9+ val author : String ,
10+ val posterUrl : String ,
11+ val year : Int ,
12+ )
13+
14+ data class SearchContentListModel (
15+ val contents : ImmutableList <SearchContentItemModel >
16+ ) {
17+ companion object {
18+ val FakeList =
19+ persistentListOf(
20+ SearchContentItemModel (
21+ id = " 1" ,
22+ title = " 은하수를 여행하는 히치하이커를 위한 안내서" ,
23+ author = " 가스 제닝스" ,
24+ posterUrl = " https://image.tmdb.org/t/p/w500/ib6v6qUXzez1x2qIOLN7C0yJNPQ.jpg" ,
25+ year = 2005 ,
26+ ),
27+ SearchContentItemModel (
28+ id = " 2" ,
29+ title = " 인터스텔라" ,
30+ author = " 크리스토퍼 놀란" ,
31+ posterUrl = " https://image.tmdb.org/t/p/w500/ib6v6qUXzez1x2qIOLN7C0yJNPQ.jpg" ,
32+ year = 2014 ,
33+ ),
34+ SearchContentItemModel (
35+ id = " 3" ,
36+ title = " 인셉션" ,
37+ author = " 크리스토퍼 놀란" ,
38+ posterUrl = " https://image.tmdb.org/t/p/w500/ib6v6qUXzez1x2qIOLN7C0yJNPQ.jpg" ,
39+ year = 2010 ,
40+ ),
41+ SearchContentItemModel (
42+ id = " 4" ,
43+ title = " 기생충" ,
44+ author = " 봉준호" ,
45+ posterUrl = " https://image.tmdb.org/t/p/w500/ib6v6qUXzez1x2qIOLN7C0yJNPQ.jpg" ,
46+ year = 2019 ,
47+ ),
48+ SearchContentItemModel (
49+ id = " 5" ,
50+ title = " 어벤져스: 엔드게임" ,
51+ author = " 안소니 루소" ,
52+ posterUrl = " https://image.tmdb.org/t/p/w500/ib6v6qUXzez1x2qIOLN7C0yJNPQ.jpg" ,
53+ year = 2019 ,
54+ ),
55+ SearchContentItemModel (
56+ id = " 6" ,
57+ title = " 다크 나이트" ,
58+ author = " 크리스토퍼 놀란" ,
59+ posterUrl = " https://image.tmdb.org/t/p/w500/ib6v6qUXzez1x2qIOLN7C0yJNPQ.jpg" ,
60+ year = 2008 ,
61+ ),
62+ SearchContentItemModel (
63+ id = " 7" ,
64+ title = " 오펜하이머" ,
65+ author = " 크리스토퍼 놀란" ,
66+ posterUrl = " https://image.tmdb.org/t/p/w500/ib6v6qUXzez1x2qIOLN7C0yJNPQ.jpg" ,
67+ year = 2023 ,
68+ ),
69+ SearchContentItemModel (
70+ id = " 8" ,
71+ title = " 괴물" ,
72+ author = " 봉준호" ,
73+ posterUrl = " https://image.tmdb.org/t/p/w500/ib6v6qUXzez1x2qIOLN7C0yJNPQ.jpg" ,
74+ year = 2006 ,
75+ ),
76+ SearchContentItemModel (
77+ id = " 9" ,
78+ title = " 설국열차" ,
79+ author = " 봉준호" ,
80+ posterUrl = " https://image.tmdb.org/t/p/w500/ib6v6qUXzez1x2qIOLN7C0yJNPQ.jpg" ,
81+ year = 2013 ,
82+ ),
83+ )
84+ }
85+ }
0 commit comments