' Options: 'Date: 2026-04-04 06:47:33 'Version: 8.52 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://pfapi.pstpf.com.au/api ' '''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: GetThemeSettings.* '''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 Eros.Saguna.Common.WebAPIModel.Interfaces Imports Eros.Subtle.Canvara.WebAPIModel.Models Imports Eros.Subtle.Canvara.WebAPIModel.ServiceModel Namespace Global Namespace Eros.Saguna.Common.WebAPIModel.Interfaces Public Interface IPublicServiceModel Property ApplianceId As Guid Property SubdomainName As String End Interface End Namespace Namespace Eros.Subtle.Canvara.WebAPIModel.Models Public Partial Class SettingModel Public Overridable Property SettingId As Guid Public Overridable Property SettingName As String Public Overridable Property SettingValue As String End Class End Namespace Namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel Public Partial Class GetSettingsResponse Public Overridable Property Settings As List(Of SettingModel) Public Overridable Property ResponseStatus As ResponseStatus End Class ''' '''Get all theme settings for the appliance and current context including title, colours and footer settings ''' Public Partial Class GetThemeSettings Implements IReturn(Of GetSettingsResponse) Implements IPublicServiceModel ''' '''Appliance to retrieve theme settings for ''' Public Overridable Property ApplianceId As Guid Implements IPublicServiceModel.ApplianceId Public Overridable Property SubdomainName As String Implements IPublicServiceModel.SubdomainName End Class End Namespace Namespace ServiceStack Public Partial Class ResponseStatus Implements IMeta Public Overridable Property ErrorCode As String Public Overridable Property Message As String Public Overridable Property StackTrace As String Public Overridable Property Errors As List(Of ResponseError) Public Overridable Property Meta As Dictionary(Of String, String) Implements IMeta.Meta End Class End Namespace End Namespace