# frozen_string_literal: true require 'credit_gateway/base_model' module CreditGateway class Amount < BaseModel attributes :amount, :currency end end