(* Options: Date: 2025-06-13 07:25:51 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetLayerMapsRQ.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Nwa.Model.Tipos.nwa.maps open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.IO [] type LayerData() = member val code:Int32 = new Int32() with get,set member val name:String = null with get,set member val latitude:Double = new Double() with get,set member val longitude:Double = new Double() with get,set member val complexinfo:String = null with get,set [] type GetLayerMapsRS() = member val Code:String = null with get,set member val ErrorMessage:String = null with get,set member val Data:ResizeArray = new ResizeArray() with get,set [] [] type GetLayerMapsRQ() = interface IReturn member val Layer:String = null with get,set member val Access:String = null with get,set