' Options: 'Date: 2026-02-04 10:25:10 'Version: 6.110 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://etc-api.vsmlab.vn ' '''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: UpdateStepStatusRequest.* '''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 ServiceStack.Web Imports System.IO Imports tvpl.data.Constant Imports tvpl.api.ServiceModel Namespace Global Namespace tvpl.api.ServiceModel Public Interface IResponseRequest Property Code As Integer Property Message As String End Interface Public Partial Class UpdateStepStatusRequest Implements IReturn(Of WorkflowStepResponse) Public Overridable Property StepId As Integer Public Overridable Property StatusKey As CategoryStatusKeys Public Overridable Property Comment As String End Class Public Partial Class WorkflowStepResponse Implements IResponseRequest Public Overridable Property Code As Integer Public Overridable Property Message As String Public Overridable Property InsertedId As Integer End Class End Namespace Namespace tvpl.data.Constant Public Enum CategoryStatusKeys WorkCreated WorkInProgress WorkReturned WorkCompleted WorkCancelled WorkDone StepNotStarted StepInProgress StepDone StepCompleted StepSkipped StepReturned NotSigned SignatureReturned SignaturePending End Enum End Namespace End Namespace