Files
metasploit-gs/lib/msf/core/model/client.rb
T

12 lines
131 B
Ruby
Raw Normal View History

module Msf
class DBManager
class Client < ActiveRecord::Base
include DBSave
belongs_to :host
2010-10-08 17:20:57 +00:00
belongs_to :campaign
end
end
2010-10-08 17:20:57 +00:00
end