' Options: 'Date: 2025-12-06 13:07:16 '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: SearchDocumentPolicyRequest.* '''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 DocumentPolicyFilter Inherits PagingRequest Public Overridable Property DepartmentId As Nullable(Of Integer) Public Overridable Property Name As String Public Overridable Property IsApproved As Nullable(Of Boolean) End Class Public Partial Class DocumentPolicyResponse Implements IResponseRequest Public Sub New() DocumentPolicy = New List(Of DocumentPolicy) End Sub Public Overridable Property Code As Integer Public Overridable Property Message As String Public Overridable Property DocumentPolicy As List(Of DocumentPolicy) Public Overridable Property UnapprovedCount As Integer Public Overridable Property TotalCount As Integer End Class Public Interface IResponseRequest Property Code As Integer Property Message As String End Interface Public Partial Class PagingRequest Public Overridable Property Page As Integer Public Overridable Property Limit As Integer End Class Public Partial Class SearchDocumentPolicyRequest Inherits DocumentPolicyFilter Implements IReturn(Of DocumentPolicyResponse) Implements IGet End Class End Namespace Namespace tvpl.data.Models Public Partial Class DocumentPolicy Inherits UpdateDocumentPolicyModel Public Overridable Property ApprovedDate As Nullable(Of Date) Public Overridable Property EstimatedDeadline As Nullable(Of Date) Public Overridable Property IsApproved As Boolean Public Overridable Property CreatedBy As Integer Public Overridable Property CreatedDate As Date Public Overridable Property DeletedAt As Nullable(Of Date) Public Overridable Property DeletedBy As Nullable(Of Integer) Public Overridable Property ApprovalComment As String Public Overridable Property IsDeleted As Nullable(Of Boolean) Public Overridable Property LastUpdateAt As Nullable(Of Date) Public Overridable Property UpdatedBy As Integer End Class End Namespace End Namespace