10 lines
303 B
10 lines
303 B
2 years ago
|
class Form::Sales::Sections::PropertyInformation < ::Form::Section
|
||
|
def initialize(id, hsh, form)
|
||
|
super
|
||
|
@id = "property_information"
|
||
|
@label = "Property information"
|
||
|
@description = ""
|
||
|
@subsections = [Form::Sales::Subsections::PropertyInformation.new(nil, nil, self)] || []
|
||
|
end
|
||
|
end
|