/* Options: Date: 2026-06-01 14:59:03 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: ToggleMobileFormatsContentTypesDto.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/Sitefinity/mobile-formats/content-types/toggle", "PUT") public class ToggleMobileFormatsContentTypesDto : Codable { public var siteId:String? public var mobileFormatContentTypes:[MobileFormatContentTypeDto]? required public init(){} } public class MobileFormatContentTypeDto : Codable { public var contentTypeDisplayName:String? public var contentTypeName:String? public var contentTypeFullname:String? public var active:Bool? required public init(){} }