mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-30 19:52:20 +01:00
7 lines
184 B
Ruby
7 lines
184 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Represents a due date and the associated amount for a PaymentSchedule
|
|
class PaymentScheduleItem < ApplicationRecord
|
|
belongs_to :payment_schedule
|
|
end
|