' Options: 'Date: 2025-04-04 19:23:08 '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: LicensePlanQuery.* '''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 ServiceStack.Data Imports System.IO Imports System.Net Imports System.Net.Http.Headers Imports BokaMera.API.ServiceModel.Db Imports BokaMera.API.ServiceModel.Dtos Imports BokaMera.API.ServiceModel.Enums Namespace Global Namespace BokaMera.API.ServiceModel.Db Public Partial Class BaseModel End Class Public Interface IBaseModelCreated Property CreatedDate As Date End Interface Public Interface IBaseModelUpdated Property UpdatedDate As Date End Interface Public Partial Class LicensePlan Inherits BaseModel Implements IBaseModelUpdated Implements IBaseModelCreated Public Overridable Property VossPlan As VossPlanResponse Public Overridable Property Id As Integer Public Overridable Property VossPlanId As Guid Public Overridable Property PlanLength As Integer Public Overridable Property PlanLengthUnitId As Integer Public Overridable Property Name As String Public Overridable Property Description As String Public Overridable Property UpdatedDate As Date Public Overridable Property CreatedDate As Date End Class End Namespace Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class LicensePlanQuery Inherits QueryDb(Of LicensePlan, LicensePlanQueryResponse) Implements IReturn(Of QueryResponse(Of LicensePlanQueryResponse)) End Class Public Partial Class LicensePlanQueryResponse Public Overridable Property Id As Integer Public Overridable Property VossPlanId As Guid Public Overridable Property Name As String Public Overridable Property Description As String Public Overridable Property VossPlan As VossPlanResponse Public Overridable Property PlanLength As Integer Public Overridable Property PlanLengthUnit As LengthUnit Public Overridable Property UpdatedDate As Date Public Overridable Property CreatedDate As Date End Class Public Partial Class VossPlanResponse Public Overridable Property Id As Guid Public Overridable Property Name As String Public Overridable Property LengthUnit As String Public Overridable Property Length As String End Class End Namespace Namespace BokaMera.API.ServiceModel.Enums Public Enum LengthUnit Week = 1 Month = 2 Year = 3 End Enum End Namespace End Namespace