leumas95

TenantDto

Nov 17th, 2017
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.34 KB | None | 0 0
  1. package windall.console.account.api.dto;
  2.  
  3. import java.math.BigDecimal
  4. import java.time.LocalDate
  5. import java.util.LinkedList
  6.  
  7. data class TenantDto (
  8.         val id: Long,
  9.         val name: String,
  10.         val weeklyRent: BigDecimal,
  11.         val paidTill: LocalDate,
  12.         val rentCredit: BigDecimal,
  13.         var receipts: MutableList<ReceiptDto> = LinkedList()
  14.  )
Advertisement
Add Comment
Please, Sign In to add comment