/* Options: Date: 2025-08-05 02:35:39 SwiftVersion: 5.0 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: ToggleMobileFormatsContentTypesDto.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //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(){} }