/* Options: Date: 2025-12-06 07:01:34 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //MakePartial: True //MakeVirtual: False //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: True //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: DeleteCategoryImageRequest.* //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 BackofficeApi; namespace BackofficeApi { [Route("/category/delete_image", "DELETE")] public partial class DeleteCategoryImageRequest : IReturn, IDelete { public long CategoryId { get; set; } } public partial class DeleteCategoryImageResponse { public CloudBlob? DeletedImage { get; set; } } public partial class CloudBlob { public string PublicUrl { get; set; } public string Key { get; set; } public DeploymentSlot? Environment { get; set; } public string Bucket { get; set; } public string IdentifyingSuffix { get; set; } public string MimeType { get; set; } } public enum DeploymentSlot { Production, Qa, Unstable, Test, Local, Docker, } }