Project

General

Profile

Download (300 Bytes) Statistics
| Branch: | Tag: | Revision:
module Proxy::DHCP
# represent a DHCP Lease
class Lease < Record
attr_reader :starts, :ends, :state

def initialize(args = {})
@starts = args[:starts]
@ends = args[:ends]
@state = args[:state]
super(args)
end

def deletable?
false
end

end
end
(1-1/2)