telepathy/src/telepathy/model/voice.cr

14 lines
239 B
Crystal

require "json"
require "./photo_size.cr"
module Telepathy
class Voice
JSON.mapping(
file_id: String,
duration: Int64,
mime_type: String?,
file_size: Int64?
)
end
end