' Options: 'Date: 2025-08-04 04:23:54 'Version: 6.110 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://szallitoiportal-be.veolia.hu ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: BrowseSupplierFile.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.IO Imports Portal.Common Imports Portal.ServiceDto Namespace Global Namespace Portal.Common Public Enum SupplierDocumentType RegistrationForm = 0 SpecimenSignature = 1 End Enum End Namespace Namespace Portal.ServiceDto Public Partial Class BrowseFileResponseBase Public Overridable Property Id As Integer Public Overridable Property FileContentId As Integer Public Overridable Property FileName As String Public Overridable Property Size As Long End Class Public Partial Class BrowseSupplierFile Implements IReturn(Of BrowseSupplierFileResponse) Implements IGet Public Overridable Property SupplierId As Integer Public Overridable Property SupplierFileId As Integer End Class Public Partial Class BrowseSupplierFileResponse Inherits ResponseBase Public Overridable Property SupplierFile As SupplierFileDetails End Class Public Partial Class ResponseBase Public Overridable Property ResponseStatus As ResponseStatus End Class Public Partial Class SupplierFileDetails Inherits BrowseFileResponseBase Public Overridable Property SupplierId As Integer Public Overridable Property DocumentType As SupplierDocumentType End Class End Namespace End Namespace