New way of categories transfer

This commit is contained in:
2025-05-05 10:10:03 +02:00
parent 3b85b12741
commit 09c15e70d9
2 changed files with 28 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
package _11.asktpk.artisanconnectbackend.dto;
//[
// { "label": "Meble", "value": "Furniture" },
// { "label": "Biżuteria", "value": "Jewelry" },
// { "label": "Ceramika", "value": "Ceramics" }
//]
import lombok.Getter;
import lombok.Setter;
@Getter @Setter
public class CategoriesDTO {
String label;
String value;
}