(* Options: Date: 2025-01-08 03:18:20 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: GetUserProfile.* //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 UserProfile() = member val DisplayName:String = null with get,set member val Avatar:String = null with get,set member val Handle:String = null with get,set [] type GetUserProfileResponse() = member val Result:UserProfile = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] type GetUserProfile() = interface IReturn