21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-06-15 05:54: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
2018-05-30 16:48:25 +02:00
attr_accessor :created_at
attr_accessor :updated_at
attr_accessor :expire_at
2018-05-30 12:04:07 +02:00
def initialize(domain)
@domain = domain
end
end
end