(* Options: Date: 2024-12-22 22:03:00 Version: 8.51 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-gallery.servicestack.net //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: QueryFileSystemItems.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace MyApp.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type FileAccessType = | Public = 0 | Team = 1 | Private = 2 [] type FileSystemFile() = member val Id:Int32 = new Int32() with get,set member val FileName:String = null with get,set member val FilePath:String = null with get,set member val ContentType:String = null with get,set member val ContentLength:Int64 = new Int64() with get,set [)>] member val FileSystemItemId:Int32 = new Int32() with get,set [] type FileSystemItem() = member val Id:Int32 = new Int32() with get,set member val FileAccessType:Nullable = new Nullable() with get,set member val File:FileSystemFile = null with get,set member val AppUserId:String = null with get,set [] type IFileItem = abstract FileAccessType:Nullable with get,set [] type IFile = abstract Id:Int32 with get,set abstract FileName:String with get,set abstract FilePath:String with get,set abstract ContentType:String with get,set abstract ContentLength:Int64 with get,set [] type QueryFileSystemItems() = inherit QueryDb() interface IReturn> member val AppUserId:Nullable = new Nullable() with get,set member val FileAccessType:Nullable = new Nullable() with get,set