' Options: 'Date: 2024-12-22 21:45:16 'Version: 8.51 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://blazor-gallery.servicestack.net ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: QueryFileSystemItems.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports MyApp.ServiceModel Namespace Global Namespace MyApp.ServiceModel Public Enum FileAccessType [Public] Team [Private] End Enum Public Partial Class FileSystemFile Implements IFile Public Overridable Property Id As Integer Implements IFile.Id Public Overridable Property FileName As String Implements IFile.FileName Public Overridable Property FilePath As String Implements IFile.FilePath Public Overridable Property ContentType As String Implements IFile.ContentType Public Overridable Property ContentLength As Long Implements IFile.ContentLength Public Overridable Property FileSystemItemId As Integer End Class Public Partial Class FileSystemItem Implements IFileItem Public Overridable Property Id As Integer Public Overridable Property FileAccessType As FileAccessType? Implements IFileItem.FileAccessType Public Overridable Property File As FileSystemFile Public Overridable Property AppUserId As String End Class Public Interface IFile Property Id As Integer Property FileName As String Property FilePath As String Property ContentType As String Property ContentLength As Long End Interface Public Interface IFileItem Property FileAccessType As FileAccessType? End Interface Public Partial Class QueryFileSystemItems Inherits QueryDb(Of FileSystemItem) Implements IReturn(Of QueryResponse(Of FileSystemItem)) Public Overridable Property AppUserId As Integer? Public Overridable Property FileAccessType As FileAccessType? End Class End Namespace End Namespace