src/main/java/com/groupdocs/ui/cache/mixin/ProjectManagementViewInfoMixIn.java
package com.groupdocs.ui.cache.mixin;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.groupdocs.viewer.FileType;
import com.groupdocs.viewer.results.Page;
import java.util.List;
public abstract class ProjectManagementViewInfoMixIn {
ProjectManagementViewInfoMixIn(@JsonProperty("fileType") FileType fileType, @JsonProperty("pages") List<Page> pages, @JsonProperty("startDate") java.util.Date startDate, @JsonProperty("endDate") java.util.Date endDate) {
}
}