AsyncDNS-cr  response.cr at [baf27b579c]

File src/response.cr artifact 96a20ec37e part of check-in baf27b579c


require "./rr"

module AsyncDNS
  class Response
    property :name, :answer, :authority, :additional

    def initialize(@name : String, @answer : Array(RR), @authority : Array(RR),
                   @additional : Array(RR))
    end
  end
end