/* Options: Date: 2024-11-21 04:43:29 Version: 6.00 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://resourcelibrary.api.ashcompanies.com //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: ResourceItemProgressRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using System.IO; using ASH.ResourceLibrary.Interfaces.ServiceModels; namespace ASH.ResourceLibrary.Interfaces.ServiceModels { [Route("/resourceProgress", "PUT")] public partial class ResourceItemProgressRequest : IReturn { public virtual int MemberId { get; set; } public virtual string ResourceId { get; set; } public virtual int PercentageCompleted { get; set; } public virtual bool IsCompleted { get; set; } } public partial class ResourceItemProgressResponse { public virtual int MemberResourceProgressID { get; set; } } }