(* Options: Date: 2025-08-04 04:13:05 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: BrowseContractFileContent.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Portal.ServiceDto open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.IO [] type ContractBase() = member val SupplierUserId:Int32 = new Int32() with get,set member val ContractId:Int32 = new Int32() with get,set [] type ContractVersionBase() = inherit ContractBase() member val ContractVersionId:Int32 = new Int32() with get,set [] type FileDownloadResult() = inherit HttpResult() [] [] type BrowseContractFileContent() = inherit ContractVersionBase() interface IReturn interface IGet member val ContractFileId:Int32 = new Int32() with get,set