init wishlist files

This commit is contained in:
Patryk
2025-05-12 19:57:00 +02:00
parent 09c15e70d9
commit cdd31fd6b7
7 changed files with 216 additions and 3 deletions

View File

@@ -28,6 +28,8 @@ public class NoticeDTO {
private List<AttributesNotice> attributesNotices;
private boolean isWishlisted;
public NoticeDTO() {
}

View File

@@ -0,0 +1,12 @@
package _11.asktpk.artisanconnectbackend.dto;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class WishlistDTO {
private Long id;
private Long clientId;
private Long noticeId;
}