Skip to content

Commit

Permalink
feature #818 Add model for new result.
Browse files Browse the repository at this point in the history
  • Loading branch information
toastkidjp committed Apr 23, 2023
1 parent 37aba4a commit 80d56cd
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions loan/src/main/java/jp/toastkid/loan/model/LoanPayment.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
* Copyright (c) 2023 toastkidjp.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompany this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html.
*/

package jp.toastkid.loan.model

data class LoanPayment(
val monthlyPayment: Long,
val paymentSchedule: List<PaymentDetail>
)

0 comments on commit 80d56cd

Please sign in to comment.