' Options: 'Date: 2026-04-26 03:43:51 '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: SearchEquipmentRequest.* '''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 Equipment) Implements IResponseRequest Public Sub New() Data = New List(Of Equipment) End Sub Public Overridable Property Code As Integer Public Overridable Property Message As String Public Overridable Property Data As List(Of Equipment) 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 SearchEquipmentRequest Inherits PagingRequest Implements IReturn(Of PageResponse(Of Equipment)) Public Overridable Property Name As String Public Overridable Property MaterialTypeId As Nullable(Of Integer) Public Overridable Property Status As Nullable(Of Integer) Public Overridable Property MineOnly As Nullable(Of Boolean) End Class End Namespace Namespace tvpl.data.Models Public Partial Class Equipment Public Overridable Property Id As Integer Public Overridable Property Name As String Public Overridable Property ImageUrl As String Public Overridable Property Description As String Public Overridable Property Unit As String Public Overridable Property MaterialTypeId As Nullable(Of Integer) Public Overridable Property Status As Integer Public Overridable Property IsDeleted As Nullable(Of Boolean) Public Overridable Property ApprovedAt As Nullable(Of Date) Public Overridable Property ApprovedBy As Nullable(Of Integer) Public Overridable Property CreatedAt As Nullable(Of Date) Public Overridable Property CreatedBy As Nullable(Of Integer) Public Overridable Property UpdatedAt As Nullable(Of Date) Public Overridable Property UpdatedBy As Nullable(Of Integer) Public Overridable Property MaterialTypeName As String Public Overridable Property CreatedByName As String Public Overridable Property ApprovedByName As String End Class End Namespace End Namespace