/* Options: Date: 2025-12-06 08:58:37 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: Migrate.* //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 CommonService.Api.Models.Base; using WebService.ServiceModel; namespace CommonService.Api.Models.Base { public partial class ApiServiceResponse : IServiceResponse { public virtual string Description { get; set; } public virtual string Heading { get; set; } public virtual bool WasSuccessful { get; set; } public virtual Object ModelState { get; set; } } } namespace WebService.ServiceModel { [Route("/migrate", "GET")] public partial class Migrate : IReturn { } public partial class MigrateResponse : ApiServiceResponse { public virtual int RecordsUpdated { get; set; } public virtual int RecordsDeleted { get; set; } public virtual int RecordsAdded { get; set; } } }