git-svn-id: https://beef.googlecode.com/svn/trunk@908 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
21 lines
373 B
Ruby
21 lines
373 B
Ruby
module BeEF
|
|
module Core
|
|
module Models
|
|
|
|
class DynamicCommandInfo
|
|
|
|
include DataMapper::Resource
|
|
|
|
storage_names[:default] = 'core.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
|
|
end |