/* Options: Date: 2025-06-07 18:11:55 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: InsertReportRQ.* //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 Administrador.Modelo.Tipos; namespace Administrador.Modelo.Tipos { [Route("/restfiles/InsertReportRQ")] public partial class InsertReportRQ : IReturn { public virtual string usua_login { get; set; } public virtual decimal carp_carp { get; set; } public virtual decimal rept_rept { get; set; } public virtual string rept_nombre { get; set; } public virtual int rept_tipo { get; set; } public virtual DateTime rept_fecmodi { get; set; } public virtual DateTime rept_fecelimi { get; set; } public virtual string rept_version { get; set; } public virtual int rept_tamano { get; set; } public virtual decimal blob_blob { get; set; } public virtual decimal vist_vist { get; set; } } public partial class InsertReportRS { public virtual bool isInsertado { get; set; } public virtual string Error { get; set; } } }