' Options: 'Date: 2026-08-17 09:14:29 'Version: 6.10 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://stubbur-app.azurewebsites.net ' '''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: SaveExtraInfoForm.* '''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 TicketUserServices.ServiceModel Namespace Global Namespace TicketUserServices.ServiceModel Public Partial Class ExtraInfoError Public Overridable Property FieldKey As String Public Overridable Property Code As String Public Overridable Property Message As String End Class Public Partial Class ExtraInfoFieldInput Public Overridable Property Id As Nullable(Of Integer) Public Overridable Property FieldKey As String Public Overridable Property FieldType As String Public Overridable Property LabelIs As String Public Overridable Property LabelEn As String Public Overridable Property PlaceholderIs As String Public Overridable Property PlaceholderEn As String Public Overridable Property IsRequired As Boolean Public Overridable Property MaxLength As Integer Public Overridable Property OptionsJson As String Public Overridable Property SortOrder As Integer End Class Public Partial Class ExtraInfoFormSaveResult Public Sub New() Errors = New List(Of ExtraInfoError) End Sub Public Overridable Property Success As Boolean Public Overridable Property Errors As List(Of ExtraInfoError) End Class Public Partial Class SaveExtraInfoForm Implements IReturn(Of ExtraInfoFormSaveResult) Public Sub New() Fields = New List(Of ExtraInfoFieldInput) End Sub Public Overridable Property EventId As Integer Public Overridable Property EventOwnerId As Integer Public Overridable Property ShowAlert As Boolean Public Overridable Property AlertTitleIs As String Public Overridable Property AlertTitleEn As String Public Overridable Property AlertBodyIs As String Public Overridable Property AlertBodyEn As String Public Overridable Property AlertButtonIs As String Public Overridable Property AlertButtonEn As String Public Overridable Property Fields As List(Of ExtraInfoFieldInput) End Class End Namespace End Namespace