mirror of
https://github.com/gosticks/iota.lib.java.git
synced 2025-10-16 11:45:37 +00:00
16 lines
331 B
Java
16 lines
331 B
Java
package jota.dto.response;
|
|
|
|
import jota.model.Transaction;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class AnalyzeTransactionResponse extends AbstractResponse {
|
|
|
|
private List<Transaction> transactions = new ArrayList<>();
|
|
|
|
public List<Transaction> getTransactions() {
|
|
return transactions;
|
|
}
|
|
}
|