15 lines
280 B
Java
15 lines
280 B
Java
package com.faf223.expensetrackerfaf.model;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.time.LocalDate;
|
|
|
|
public interface IMoneyTransaction {
|
|
|
|
Long getId();
|
|
LocalDate getDate();
|
|
User getUser();
|
|
BigDecimal getAmount();
|
|
IMoneyTransactionCategory getCategory();
|
|
|
|
}
|