Files
SecGen/lib/objects/base_module.rb
2016-03-22 12:53:26 +00:00

11 lines
172 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