mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
11 lines
223 B
Ruby
11 lines
223 B
Ruby
# frozen_string_literal: false
|
|
|
|
class Invoice
|
|
class DataPresenter
|
|
class PaymentMethod < Invoice::DataPresenter::Base
|
|
attributes :id, :name, :description
|
|
invoice_generation_attributes :id
|
|
end
|
|
end
|
|
end
|