mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
10 lines
159 B
Ruby
10 lines
159 B
Ruby
# frozen_string_literal: false
|
|
|
|
class Invoice
|
|
class DataPresenter
|
|
class Supplier < Invoice::DataPresenter::Base
|
|
attributes :name
|
|
end
|
|
end
|
|
end
|