12 lines
138 B
Ruby
12 lines
138 B
Ruby
class Trade::Creator
|
|
def initialize(attrs)
|
|
@attrs = attrs
|
|
end
|
|
|
|
def create
|
|
# TODO
|
|
end
|
|
|
|
private
|
|
attr_reader :attrs
|
|
end |