mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
11 lines
200 B
Ruby
11 lines
200 B
Ruby
# frozen_string_literal: false
|
|
|
|
class Invoice
|
|
class DataPresenter
|
|
class Product < Invoice::DataPresenter::Base
|
|
attributes :name
|
|
attributes_with_presenter :supplier
|
|
end
|
|
end
|
|
end
|