fix: UserCreateRequest start balance type int -> double

This commit is contained in:
Piotr Dec 2024-05-22 18:05:15 +02:00
parent edf770b8ed
commit 2b0baf6066
Signed by: stawros
GPG key ID: F89F27AD8F881A91

View file

@ -8,6 +8,6 @@ public record UserCreateRequest(
@NotNull String name,
@NotNull String surname,
@Adult String pesel,
@Min(0) int pln) {
@Min(0) double pln) {
}