' Options: 'Date: 2024-06-26 10:18:53 '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: RecurringScheduleIntervalsQuery.* '''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.Interfaces Imports BokaMera.API.ServiceModel.Dtos Namespace Global Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class RecurringScheduleIntervalsQuery Implements IReturn(Of ScheduleIntervalsQueryResponse) Implements ICompany Implements IInterval Public Sub New() ResourceIds = New Integer(){} End Sub ''' '''Company to show services for ''' Public Overridable Property CompanyId As Nullable(Of Guid) ''' '''From what datetime to show times ''' Public Overridable Property From As Date ''' '''To what datetime to show times ''' Public Overridable Property To As Date ''' '''Here you can select one of the resource, if none is selected it will show available times for all ''' Public Overridable Property ResourceIds As Integer() Public Overridable Property ResponseStatus As ResponseStatus End Class Public Partial Class ScheduleIntervalsQueryResponse Public Overridable Property From As Date Public Overridable Property To As Date Public Overridable Property Duration As TimeSpan End Class End Namespace Namespace BokaMera.API.ServiceModel.Interfaces Public Interface ICompany Property CompanyId As Nullable(Of Guid) End Interface Public Interface IInterval Property From As Date Property To As Date End Interface End Namespace End Namespace