Skip to content

Commit

Permalink
Fixed class visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
har-nick committed Dec 1, 2024
1 parent 6267986 commit 74f72ff
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
internal class PackageDetailsImageDto private constructor(
public class PackageDetailsImageDto private constructor(
@SerialName("image_id")
val id: Long,
public val id: Long,

@SerialName("width")
val width: Int,
public val width: Int,

@SerialName("height")
val height: Int
public val height: Int
)

0 comments on commit 74f72ff

Please sign in to comment.