' Options: 'Date: 2026-09-23 11:27:58 'Version: 10.05 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://api.bookmore.dev ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: DeleteArticleMapping.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.Globalization Imports ServiceStack.Data Imports System.Net Imports System.Net.Http.Headers Imports BokaMera.API.ServiceModel.Interfaces Imports BokaMera.API.ServiceModel.Dtos Namespace Global Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class ArticleMappingResponse ''' '''The company id ''' Public Overridable Property CompanyId As Guid ''' '''The id ''' Public Overridable Property Id As Guid ''' '''The BokaMera article id ''' Public Overridable Property ArticleId As Integer ''' '''The external reference ''' Public Overridable Property ExternalReference As String ''' '''The Reference Type ''' Public Overridable Property ReferenceType As String End Class Public Partial Class DeleteArticleMapping Implements IReturn(Of ArticleMappingResponse) Implements ICompany ''' '''Company to delete the article mapping for ''' Public Overridable Property CompanyId As Guid? Implements ICompany.CompanyId ''' '''Id of the article mapping ''' Public Overridable Property Id As Guid End Class End Namespace Namespace BokaMera.API.ServiceModel.Interfaces Public Interface ICompany Property CompanyId As Guid? End Interface End Namespace End Namespace