/* Options: Date: 2025-06-07 16:22:26 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: UploadFileRQ.* //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.General; namespace Administrador.Modelo.General { [Route("/Utilidades/Archivos/UploadFileRQ")] public partial class UploadFileRQ : IReturn { public virtual string path { get; set; } public virtual string carp_carp { get; set; } } public partial class UploadFileRS { public virtual bool Success { get; set; } public virtual string Error { get; set; } } }