mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
20 lines
245 B
Ruby
20 lines
245 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Payments module
|
|
module Payment; end
|
|
|
|
# Generic payment object
|
|
class Payment::Item
|
|
attr_reader :klass
|
|
|
|
def initialize(klass)
|
|
@klass = klass
|
|
end
|
|
|
|
def class
|
|
klass
|
|
end
|
|
|
|
def retrieve(_id); end
|
|
end
|