/* Options: Date: 2026-01-22 01:49:47 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pecuario-backend.develsystems.com //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: RequestCredit.* //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 Pecuario.Backend.Application.DTOs; namespace Pecuario.Backend.Application.DTOs { public partial class BaseResponse { public virtual Status Status { get; set; } } [Route("/api/v1/credit/request", "POST")] public partial class RequestCredit : IReturn, IPost { public virtual string Nombre { get; set; } public virtual string DPI { get; set; } public virtual string FechaDeNacimiento { get; set; } public virtual string Telefono { get; set; } public virtual decimal? MontoAFinanciar { get; set; } public virtual int RegionId { get; set; } public virtual int CityId { get; set; } } public partial class RequestCreditResponse : BaseResponse { public virtual string Id { get; set; } } public partial class Status { public virtual string Message { get; set; } public virtual int StatusCode { get; set; } } }