mirror of
https://github.com/gosticks/iota.lib.java.git
synced 2026-08-20 00:00:21 +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;
|
|
}
|
|
}
|