Skip to content

Commit

Permalink
Fix parsing image model
Browse files Browse the repository at this point in the history
  • Loading branch information
hearsilent committed Nov 2, 2020
1 parent 58880f8 commit e74bf5a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/src/main/java/hearsilent/zeplin/models/ImageModel.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
package hearsilent.zeplin.models

import com.fasterxml.jackson.annotation.JsonIgnoreProperties

@JsonIgnoreProperties(ignoreUnknown = true)
data class ImageModel(val width: Int, val height: Int, val original_url: String)

0 comments on commit e74bf5a

Please sign in to comment.