(* Options: Date: 2025-12-06 07:05:10 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: AddBrandRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BackofficeApi open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type BackofficeBrandDto() = member val Id:Int64 = new Int64() with get,set member val DefinedByRootCategoryId:Int64 = new Int64() with get,set member val Name:String = null with get,set member val SelectedForEditingInBackoffice:Boolean = new Boolean() with get,set [] type AddBrandResponse() = member val Brand:BackofficeBrandDto = null with get,set [] [] type AddBrandRequest() = interface IReturn interface IPost member val DefinedByRootCategoryId:Int64 = new Int64() with get,set member val Name:String = null with get,set member val SelectedForEditingInBackoffice:Boolean = new Boolean() with get,set