All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arextest.web.model.dto.KeyValuePairDto Maven / Gradle / Ivy

There is a newer version: 0.6.5.5
Show newest version
package com.arextest.web.model.dto;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@AllArgsConstructor
@NoArgsConstructor
public class KeyValuePairDto {

  private String key;
  private String value;
  private Boolean active;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy