Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package windall.console.account.api.dto;
- import java.math.BigDecimal
- import java.time.LocalDate
- import java.util.LinkedList
- data class TenantDto (
- val id: Long,
- val name: String,
- val weeklyRent: BigDecimal,
- val paidTill: LocalDate,
- val rentCredit: BigDecimal,
- var receipts: MutableList<ReceiptDto> = LinkedList()
- )
Advertisement
Add Comment
Please, Sign In to add comment