mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
10 lines
166 B
Ruby
10 lines
166 B
Ruby
# frozen_string_literal: false
|
|
|
|
class Invoice
|
|
class DataPresenter
|
|
class Contact < Invoice::DataPresenter::Base
|
|
attributes :name, :email
|
|
end
|
|
end
|
|
end
|