/* Options: Date: 2025-04-19 13:34:24 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sharpscript.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: IntrospectState.* //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 { @Route(Path="/introspect/state") public static class IntrospectState { public String page = null; public String processInfo = null; public String driveInfo = null; public String getPage() { return page; } public IntrospectState setPage(String value) { this.page = value; return this; } public String getProcessInfo() { return processInfo; } public IntrospectState setProcessInfo(String value) { this.processInfo = value; return this; } public String getDriveInfo() { return driveInfo; } public IntrospectState setDriveInfo(String value) { this.driveInfo = value; return this; } } }