21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-18 16:38:38 +02:00
chexpire/app/services/whois/response.rb
2018-05-30 17:01:32 +02:00

12 lines
188 B
Ruby

module Whois
class Response
attr_accessor :created_on
attr_accessor :updated_on
attr_accessor :expire_on
def initialize(domain)
@domain = domain
end
end
end