Skip to content

Commit

Permalink
Add MovieModel and GenreModel (#66)
Browse files Browse the repository at this point in the history
* Add MovieModel

* Add GenreModel
  • Loading branch information
AfigAliyev committed Aug 14, 2022
1 parent 3a37a98 commit 132a348
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* Copyright 2022 Maximillian Leonov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.maximillianleonov.cinemax.domain.model

data class GenreModel(
val id: Int,
val name: String
)
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*
* Copyright 2022 Maximillian Leonov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.maximillianleonov.cinemax.domain.model

import kotlinx.datetime.LocalDate

data class MovieModel(
val id: Int,
val title: String,
val overview: String,
val popularity: Double,
val releaseDate: LocalDate,
val adult: Boolean,
val genres: List<GenreModel>,
val originalTitle: String,
val originalLanguage: String,
val voteAverage: Double,
val voteCount: Int,
val posterPath: String?,
val backdropPath: String?,
val video: Boolean
)

0 comments on commit 132a348

Please sign in to comment.