' Options: 'Date: 2025-01-08 03:09:42 'Version: 8.53 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://blazordiffusion.com ' '''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: QueryApiTypes.* '''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 AiServer.ServiceModel Namespace Global Namespace AiServer.ServiceModel Public Enum AiProvider OpenAiProvider GoogleAiProvider End Enum Public Partial Class ApiType Public Overridable Property Id As Integer Public Overridable Property Provider As AiProvider Public Overridable Property Name As String Public Overridable Property Website As String Public Overridable Property ApiBaseUrl As String Public Overridable Property HeartbeatUrl As String Public Overridable Property Icon As String Public Overridable Property ApiModels As Dictionary(Of String, String) = New Dictionary(Of String, String) End Class Public Partial Class QueryApiTypes Inherits QueryDb(Of ApiType) Implements IReturn(Of QueryResponse(Of ApiType)) End Class End Namespace End Namespace