fix: List in User response instead of Map

This commit is contained in:
Piotr Dec 2024-06-27 01:19:30 +02:00
parent a37f1c2834
commit 177f673696
Signed by: stawros
GPG key ID: F89F27AD8F881A91
4 changed files with 21 additions and 4 deletions

View file

@ -0,0 +1,9 @@
package eu.ztsh.wymiana.web.model;
import eu.ztsh.wymiana.model.Currency;
import java.util.List;
public record UserResponse(String name, String surname, String pesel, List<Currency> currencies) {
}