module FreeboxApi module Resources class StaticLease attr_reader :id, :mac, :comment, :hostname, :ip, :host def initialize(id, mac, comment, hostname, ip, host, freebox) @id = id @mac = mac @hostname = hostname @ip = ip @host = host @freebox = freebox end end end end