/* Options: Date: 2026-04-05 18:04:19 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetAppVersion.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/Get-App-Version", Verbs="GET") public static class GetAppVersion implements IReturn { private static Object responseType = AppVersionViewModel.class; public Object getResponseType() { return responseType; } } public static class AppVersionViewModel { public String CurrentIOSVersion = null; public String CurrentAndroidVersion = null; public String getCurrentIOSVersion() { return CurrentIOSVersion; } public AppVersionViewModel setCurrentIOSVersion(String value) { this.CurrentIOSVersion = value; return this; } public String getCurrentAndroidVersion() { return CurrentAndroidVersion; } public AppVersionViewModel setCurrentAndroidVersion(String value) { this.CurrentAndroidVersion = value; return this; } } }