/* Options: Date: 2024-12-23 11:25:13 SwiftVersion: 5.0 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: ProfileDeletePhotoRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/profile/delete-photo", "PUT") public class ProfileDeletePhotoRequest : IReturn, IPut, Codable { public typealias Return = ProfileDeletePhotoResponse required public init(){} } public class ProfileDeletePhotoResponse : Codable { public var deleteCount:Int required public init(){} }