mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-22 03:38:01 +00:00
15 lines
243 B
Ruby
15 lines
243 B
Ruby
class Site
|
|
# Site name
|
|
attr_accessor :name
|
|
|
|
# Type of site
|
|
attr_accessor :type
|
|
|
|
# Initialize site object
|
|
# @param name [String]
|
|
# @param type [String]
|
|
def initialize(name='', type='')
|
|
@name = name
|
|
@type = type
|
|
end
|
|
end |