File src/response.cr from the latest check-in
require "./rr" module AsyncDNS class Response property domain : String property answer : Array(RR) property authority : Array(RR) property additional : Array(RR) def initialize(@domain : String, @answer : Array(RR), @authority : Array(RR), @additional : Array(RR)) end end end