Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioG70 committed Dec 5, 2024
1 parent 96566a4 commit 28a94e5
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package com.databasepreservation.common.client.index.facets;

import java.io.Serializable;
import java.util.Map;

public class JsonQueryFacet implements Serializable {

private String facetName;
private Map<String, Object> facetJson;

public JsonQueryFacet() {
}

public JsonQueryFacet(String facetName, Map<String, Object> facetJson) {
this.facetName = facetName;
this.facetJson = facetJson;
}
}

0 comments on commit 28a94e5

Please sign in to comment.