(* Options: Date: 2025-08-04 04:14:37 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: BrowseAllSupplementaryFile.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Portal.Common open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.IO [] type TenderUserTenderRoundBase() = member val TenderId:Int32 = new Int32() with get,set member val UserId:Int32 = new Int32() with get,set member val TenderRoundId:Int32 = new Int32() with get,set [] type SupplementaryBase() = inherit TenderUserTenderRoundBase() member val SupplementaryId:Int32 = new Int32() with get,set [] type ResponseBase() = member val ResponseStatus:ResponseStatus = null with get,set [] type BrowseFileResponseBase() = member val Id:Int32 = new Int32() with get,set member val FileContentId:Int32 = new Int32() with get,set member val FileName:String = null with get,set member val Size:Int64 = new Int64() with get,set type SupplementaryFileDirection = | Request = 0 | Response = 1 [] type SupplementaryFileDetails() = inherit BrowseFileResponseBase() member val SupplementaryId:Int32 = new Int32() with get,set member val SupplementaryDocumentTypeId:Int32 = new Int32() with get,set member val SupplementaryDocumentType:String = null with get,set member val Direction:SupplementaryFileDirection = new SupplementaryFileDirection() with get,set [] type BrowseAllSupplementaryFileResponse() = inherit ResponseBase() member val SupplementaryFiles:ResizeArray = new ResizeArray() with get,set [] [] type BrowseAllSupplementaryFile() = inherit SupplementaryBase() interface IReturn interface IGet