/* Options: Date: 2026-06-01 15:36:01 SwiftVersion: 5.0 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://imzagerservices.eyyubiye.bel.tr //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: Authentication.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/Authentication/{ClientKey}") public class Authentication : IReturn, Codable { public typealias Return = AuthenticationResponse public var clientKey:String public var secretKey:String required public init(){} } public class AuthenticationResponse : Codable { public var result:String public var serviceSuccessResult:Bool public var errorMesage:String required public init(){} }