' Options: 'Date: 2026-03-13 22:08:44 'Version: 8.60 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://milliet.io ' '''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: url_shortener.* '''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 WS_RESTRICTED_API Namespace Global Namespace WS_RESTRICTED_API Public Enum operationType NoOperation ShortenUrl GetOriginalUrl RedirectUrl End Enum Public Partial Class url_shortener Implements IReturn(Of url_shortenerResponse) ''' '''operation type ''' Public Overridable Property operation As operationType? ''' '''url ''' Public Overridable Property url As String ''' '''days to expire ''' Public Overridable Property days As Double? End Class Public Partial Class url_shortenerResponse Public Overridable Property tiny_url As String Public Overridable Property original_url As String Public Overridable Property created_date As Date Public Overridable Property expiry_date As Date? Public Overridable Property collision As Integer? End Class End Namespace End Namespace