mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-11 22:24:21 +01:00
8 lines
206 B
Ruby
8 lines
206 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Represents a due date and the associated amount for a PaymentSchedule
|
|
class PaymentScheduleItem < ApplicationRecord
|
|
belongs_to :payment_schedule
|
|
belongs_to :invoice
|
|
end
|