/* Options: Date: 2025-12-06 08:51:32 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://cochraneplus-api-dev.happen.zone //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: Test.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using WebService.ServiceModel; namespace WebService.ServiceModel { [Route("/test", "GET")] public partial class Test : IReturn { /// ///An email address a test email will be sent to /// [ApiMember(Description="An email address a test email will be sent to")] public virtual string Smtp { get; set; } } public partial class TestResponse { public TestResponse() { Tests = new Dictionary{}; } public virtual string Environment { get; set; } public virtual Dictionary Tests { get; set; } public virtual bool WasSuccessful { get; set; } public virtual string DB { get; set; } } public partial class TestResult { public virtual bool WasSuccessful { get; set; } public virtual string Description { get; set; } } }