14 lines
310 B
14 lines
310 B
7 months ago
|
class Form::Sales::Pages::ValueSharedOwnership < ::Form::Page
|
||
2 years ago
|
def initialize(id, hsh, subsection)
|
||
|
super
|
||
7 months ago
|
@id = "value_shared_ownership"
|
||
2 years ago
|
@header = "About the price of the property"
|
||
|
end
|
||
|
|
||
|
def questions
|
||
|
@questions ||= [
|
||
|
Form::Sales::Questions::Value.new(nil, nil, self),
|
||
|
]
|
||
|
end
|
||
|
end
|