SideSize

data class SideSize(val left: Int? = null, val top: Int? = null, val right: Int? = null, val bottom: Int? = null) : Serializable

Структура, определяющая размер сторон

Parameters

left

левая сторона

top

верхняя сторона

right

правая сторона

bottom

нижняя сторона

Constructors

Link copied to clipboard
constructor(left: Int? = null, top: Int? = null, right: Int? = null, bottom: Int? = null)

Properties

Link copied to clipboard
val bottom: Int? = null
Link copied to clipboard
val left: Int? = null
Link copied to clipboard
val right: Int? = null
Link copied to clipboard
val top: Int? = null