(* Options: Date: 2026-01-22 01:51:08 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pecuario-backend.develsystems.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetAnimalTypesByCategory.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Pecuario.Backend.Application.DTOs open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type AnimalCategory() = member val Id:Int32 = new Int32() with get,set [] [] member val Name:String = null with get,set member val Alias:String = null with get,set member val Order:Int32 = new Int32() with get,set member val Enabled:Boolean = new Boolean() with get,set [] type Status() = member val Message:String = null with get,set member val StatusCode:Int32 = new Int32() with get,set [] type BaseResponse() = member val Status:Status = null with get,set [] type AnimalType() = member val Id:Int32 = new Int32() with get,set [] [] member val Name:String = null with get,set [)>] member val AnimalCategoryId:Int32 = new Int32() with get,set [] type GetAnimalTypesByCategoryResponse() = inherit BaseResponse() member val AnimalTypes:ResizeArray = new ResizeArray() with get,set [] [] type GetAnimalTypesByCategory() = interface IReturn interface IGet member val CategoryId:Nullable = new Nullable() with get,set