AsyncDNS-cr  Artifact [05324bedeb]

Artifact 05324bedebcf15ebbcc8540740a9b897329026f009e067d19739a49705ae79e7:


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