Done ticket

This commit is contained in:
nisha
2024-10-12 15:43:38 +05:30
parent 90aae05fa4
commit b6f16d388e
9 changed files with 833 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package net.gepafin.tendermanagement.model.request;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
public class FieldLabelValuePairRequest {
private String label;
private Object value;
}