(* Options: Date: 2024-11-22 23:59:33 Version: 6.00 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://resourcelibrary.api.ashcompanies.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ResourceItemProgressRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace ASH.ResourceLibrary.Interfaces.ServiceModels open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.IO [] type ResourceItemProgressResponse() = member val MemberResourceProgressID:Int32 = new Int32() with get,set [] [] type ResourceItemProgressRequest() = interface IReturn member val MemberId:Int32 = new Int32() with get,set member val ResourceId:String = null with get,set member val PercentageCompleted:Int32 = new Int32() with get,set member val IsCompleted:Boolean = new Boolean() with get,set