Files
SecGen/lib/objects/base_module.rb

11 lines
173 B
Ruby

#Contains common components that modules will inherit from.
class BaseModule
# Name of the module
attr_accessor :name
#Type of the module
attr_accessor :type
end