/* Options: Date: 2025-12-16 01:12:51 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-vue.web-templates.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AdminData.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { public static class AdminData implements IReturn, IGet { private static Object responseType = AdminDataResponse.class; public Object getResponseType() { return responseType; } } public static class AdminDataResponse { public ArrayList pageStats = new ArrayList(); public ArrayList getPageStats() { return pageStats; } public AdminDataResponse setPageStats(ArrayList value) { this.pageStats = value; return this; } } public static class PageStats { public String label = null; public Integer total = null; public String getLabel() { return label; } public PageStats setLabel(String value) { this.label = value; return this; } public Integer getTotal() { return total; } public PageStats setTotal(Integer value) { this.total = value; return this; } } }