mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
10 lines
167 B
Ruby
10 lines
167 B
Ruby
# frozen_string_literal: false
|
|
|
|
class Invoice
|
|
class DataPresenter
|
|
class Customer < Invoice::DataPresenter::Base
|
|
attributes :code, :email
|
|
end
|
|
end
|
|
end
|