' Options: 'Date: 2024-06-26 08:58:21 'Version: 8.23 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://testapi.bokamera.se ' '''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: AddResource.* '''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.Globalization Imports System.IO Imports BokaMera.API.ServiceModel.Dtos Namespace Global Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class AddResource Public Sub New() Resources = New List(Of AddResourceTypeResource) End Sub ''' '''The company id ''' Public Overridable Property CompanyId As Guid ''' '''The ResourceType id ''' Public Overridable Property Id As Integer ''' '''The resources to be included ''' Public Overridable Property Resources As List(Of AddResourceTypeResource) End Class Public Partial Class AddResourceTypeResource ''' '''The resource id ''' Public Overridable Property Id As Integer ''' '''The priority of the resource. If no priority is set it will take random resource when booking a time. ''' Public Overridable Property Priority As Integer End Class End Namespace End Namespace