1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/models/cart_item/base_item.rb

18 lines
324 B
Ruby

# frozen_string_literal: true
# Items that can be added to the shopping cart
module CartItem; end
# This is an abstract class implemented by classes that can be added to the shopping cart
class CartItem::BaseItem
self.abstract_class = true
def price
{ elements: {}, amount: 0 }
end
def name
''
end
end