(* Options: Date: 2025-01-08 03:08:15 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazordiffusion.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: QueryArtifactStats.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace BlazorDiffusion.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type StatBase() = member val RefId:String = null with get,set member val AppUserId:Nullable = new Nullable() with get,set member val RawUrl:String = null with get,set member val RemoteIp:String = null with get,set member val CreatedDate:DateTime = new DateTime() with get,set type StatType = | Download = 0 [] type ArtifactStat() = inherit StatBase() member val Id:Int32 = new Int32() with get,set member val Type:StatType = new StatType() with get,set member val ArtifactId:Int32 = new Int32() with get,set member val Source:String = null with get,set member val Version:String = null with get,set [] [] type QueryArtifactStats() = inherit QueryDb() interface IReturn>