/* Options: Date: 2025-06-13 06:46:57 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.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: ValoresDefectoFormaRQ.* //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 Administrador.Modelo.Tipos; namespace Administrador.Modelo.Tipos { [Route("/Utilidades/Formas/ValoresDefecto")] public partial class ValoresDefectoFormaRQ : IReturn { public ValoresDefectoFormaRQ() { Parametros = new Dictionary{}; } public virtual int IDTabla { get; set; } public virtual Dictionary Parametros { get; set; } } public partial class ValoresDefectoFormaRS { public ValoresDefectoFormaRS() { ValoresDefecto = new Dictionary{}; } public virtual Dictionary ValoresDefecto { get; set; } } }