Files
beef/lib/model/dynamiccommandinfo.rb
2011-01-06 16:14:40 +00:00

21 lines
336 B
Ruby

module BeEF
module Models
class DynamicCommandInfo
include DataMapper::Resource
storage_names[:default] = 'dynamic_command_info'
property :id, Serial
property :name, Text, :lazy => false
property :description, Text, :lazy => false
property :targets, Text, :lazy => false
belongs_to :command_module
end
end
end