/* Options: Date: 2026-01-22 01:41:05 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: GetUserTypes.* //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/utils/user-types", "GET")] public partial class GetUserTypes : IReturn, IGet { } public partial class GetUserTypesResponse : BaseResponse { public GetUserTypesResponse() { UserTypes = new List{}; } public virtual List UserTypes { get; set; } } public partial class Status { public virtual string Message { get; set; } public virtual int StatusCode { get; set; } } public partial class UserType { public virtual int Id { get; set; } [Required] [StringLength(10)] public virtual string Code { get; set; } [Required] [StringLength(100)] public virtual string Name { get; set; } } }