' Options: 'Date: 2026-04-18 00:17:40 'Version: 6.110 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://qlcn-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: SearchWorkflowRequest.* '''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.api.ServiceModel Imports tvpl.data.Models Namespace Global Namespace tvpl.api.ServiceModel Public Partial Class PageResponse(Of Workflow) Implements IResponseRequest Public Sub New() Data = New List(Of Workflow) End Sub Public Overridable Property Code As Integer Public Overridable Property Message As String Public Overridable Property Data As List(Of Workflow) Public Overridable Property Pagination As Pagination End Class Public Partial Class PagingRequest Public Overridable Property Page As Integer Public Overridable Property Limit As Integer End Class Public Partial Class SearchWorkflowRequest Inherits PagingRequest Implements IReturn(Of PageResponse(Of Workflow)) Public Overridable Property Keyword As String Public Overridable Property IsInstance As Nullable(Of Boolean) Public Overridable Property IsActive As Nullable(Of Boolean) Public Overridable Property DocumentTypeId As Nullable(Of Integer) Public Overridable Property MainId As Nullable(Of Integer) Public Overridable Property AccountId As Nullable(Of Integer) Public Overridable Property DepartmentId As Nullable(Of Integer) End Class End Namespace Namespace tvpl.data.Models Public Partial Class Workflow Public Overridable Property Id As Integer Public Overridable Property Title As String Public Overridable Property Description As String Public Overridable Property DocumentCode As String Public Overridable Property DocumentTypeId As Nullable(Of Integer) Public Overridable Property IsInstance As Boolean Public Overridable Property MainId As Nullable(Of Integer) Public Overridable Property IsActive As Boolean Public Overridable Property StatusId As Nullable(Of Integer) Public Overridable Property AccountId As Nullable(Of Integer) Public Overridable Property DepartmentId As Nullable(Of Integer) Public Overridable Property ScopeType As Integer Public Overridable Property CreatedBy As String Public Overridable Property CreatedAt As Date Public Overridable Property UpdatedBy As String Public Overridable Property UpdatedAt As Nullable(Of Date) End Class End Namespace End Namespace