21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-06-09 11:04:28 +02:00
chexpire/app/services/whois/response.rb

12 lines
188 B
Ruby
Raw Normal View History

2018-05-30 12:04:07 +02:00
module Whois
class Response
attr_accessor :created_on
attr_accessor :updated_on
attr_accessor :expire_on
def initialize(domain)
@domain = domain
end
end
end