(* Options: Date: 2025-12-06 08:58:36 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cochraneplus-api-dev.happen.zone //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: Test.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace WebService.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type TestResult() = member val WasSuccessful:Boolean = new Boolean() with get,set member val Description:String = null with get,set [] type TestResponse() = member val Environment:String = null with get,set member val Tests:Dictionary = new Dictionary() with get,set member val WasSuccessful:Boolean = new Boolean() with get,set member val DB:String = null with get,set [] [] type Test() = interface IReturn /// ///An email address a test email will be sent to /// [] member val Smtp:String = null with get,set