' Options: 'Date: 2024-10-18 04:28:11 'Version: 6.40 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://digiofficeapigateway.deltares.nl/api ' '''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: SetWorkflowTaskMessage.* '''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.Drawing Imports IDB.API.DTO.Interfaces Imports IDB.API.DTO.Workflow.Operations Imports IDB.API.DTO.Workflow Namespace Global Namespace IDB.API.DTO.Interfaces Public Interface IComment Property Text As String Property [Date] As Date Property Username As String Property IsMine As Boolean End Interface End Namespace Namespace IDB.API.DTO.Workflow Public Partial Class WorkflowTaskComment Implements IComment Public Overridable Property WorkflowTaskID As Integer Public Overridable Property UserID As Integer Public Overridable Property TaskTitle As String Public Overridable Property Connection As String Public Overridable Property Username As String Public Overridable Property Text As String Public Overridable Property [Date] As Date Public Overridable Property IsMine As Boolean End Class End Namespace Namespace IDB.API.DTO.Workflow.Operations Public Partial Class SetWorkflowTaskMessage Implements IReturn(Of WorkflowTaskComment) Public Overridable Property ID As Integer Public Overridable Property UserID As Integer Public Overridable Property Message As String End Class End Namespace End Namespace