telepathy/src/telepathy/model/location.cr

11 lines
158 B
Crystal

require "json"
module Telepathy
class Location
JSON.mapping(
longitude: Float32,
latitude: Float32
)
end
end