' Options: 'Date: 2025-04-04 16:43:40 'Version: 5.140 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://api.clubmanagercentral.com ' '''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: FindFacility.* '''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 ClubManager.Api.Services.Query Namespace Global Namespace ClubManager.Api.Services.Query Public Partial Class FacilityInstance Public Overridable Property FacilityId As Integer Public Overridable Property Name As String Public Overridable Property Description As String Public Overridable Property Schedule As ScheduleInstance Public Overridable Property ScheduleId As Integer Public Overridable Property Colour As String Public Overridable Property Bookable As Boolean Public Overridable Property Deleted As Boolean Public Overridable Property Demo As Boolean Public Overridable Property Group As String End Class Public Partial Class FindFacility Inherits QueryDb(Of FacilityInstance) Implements IReturn(Of QueryResponse(Of FacilityInstance)) End Class Public Partial Class ScheduleInstance Public Overridable Property ScheduleId As Integer Public Overridable Property Name As String Public Overridable Property Description As String Public Overridable Property MondayFrom As Nullable(Of TimeSpan) Public Overridable Property MondayTo As Nullable(Of TimeSpan) Public Overridable Property TuesdayFrom As Nullable(Of TimeSpan) Public Overridable Property TuesdayTo As Nullable(Of TimeSpan) Public Overridable Property WednesdayFrom As Nullable(Of TimeSpan) Public Overridable Property WednesdayTo As Nullable(Of TimeSpan) Public Overridable Property ThursdayFrom As Nullable(Of TimeSpan) Public Overridable Property ThursdayTo As Nullable(Of TimeSpan) Public Overridable Property FridayFrom As Nullable(Of TimeSpan) Public Overridable Property FridayTo As Nullable(Of TimeSpan) Public Overridable Property SaturdayFrom As Nullable(Of TimeSpan) Public Overridable Property SaturdayTo As Nullable(Of TimeSpan) Public Overridable Property SundayFrom As Nullable(Of TimeSpan) Public Overridable Property SundayTo As Nullable(Of TimeSpan) Public Overridable Property ScheduleType As Integer Public Overridable Property Deleted As Boolean Public Overridable Property Demo As Boolean End Class End Namespace End Namespace