AsyncDNS-cr  response.cr at [c210ddc089]

File src/response.cr artifact 05324bedeb part of check-in c210ddc089


require "./rr"

module AsyncDNS
  class Response
    property name : String
    property answer : Array(RR)
    property authority : Array(RR)
    property additional : Array(RR)

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