mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-14 02:50:58 +08:00
16 lines
287 B
Java
16 lines
287 B
Java
package com.openisle.dto;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class DonationResponse {
|
|
|
|
private int totalAmount;
|
|
private List<DonationDto> donations = new ArrayList<>();
|
|
private Integer balance;
|
|
}
|