aboutsummaryrefslogtreecommitdiffstats
path: root/api/src/main/java/market/guess/model/event/ParticipantDTO.java
blob: 3b15c89813f5f3ec4c13e3f53a444b601b989be4 (plain)
1
2
3
4
5
6
7
8
9
10
package market.guess.model.event;

public record ParticipantDTO(
    String user,
    String tag,
    int yes,
    int no,
    String value,
    String fees,
    String pnl) {}