/* Options: Date: 2025-06-27 22:07:46 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://uat-api-vehicle-mgt-mb-dhc.rapp-customers.co.uk //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: False //ExportValueTypes: False IncludeTypes: DisplayStockBlueprintRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Mercedes.VehicleManagement.API.ServiceModel; using Mercedes.VehicleManagement.API.Shared.POCO; namespace Mercedes.VehicleManagement.API.ServiceModel { [Route("/v1/displaystockblueprint/fileprocess", "POST")] public partial class DisplayStockBlueprintRequest : IReturn, IPost { } } namespace Mercedes.VehicleManagement.API.Shared.POCO { public partial class DisplayStockBlueprintResponse { public virtual bool Success { get; set; } public virtual string Message { get; set; } } }