telepathy/src/telepathy/model/photo_size.cr

13 lines
210 B
Crystal

require "json"
module Telepathy
class PhotoSize
JSON.mapping(
file_id: String?,
width: Int64,
height: Int64,
file_size: Int64?
)
end
end