package com.sigem.gis.security; public class AuthResponse { private String token; private String nombre; private String message; // Metadatos Cartográficos (Nuevos) private Double lat; private Double lng; private Integer zoom; private Integer minZoom; private Integer maxZoom; private String mapaBase; private String bounds; public AuthResponse(String token, String nombre, String message) { this.token = token; this.nombre = nombre; this.message = message; } public AuthResponse(String token, String nombre, String message, Double lat, Double lng, Integer zoom, Integer minZoom, Integer maxZoom, String mapaBase, String bounds) { this.token = token; this.nombre = nombre; this.message = message; this.lat = lat; this.lng = lng; this.zoom = zoom; this.minZoom = minZoom; this.maxZoom = maxZoom; this.mapaBase = mapaBase; this.bounds = bounds; } // Getters y Setters public String getToken() { return token; } public String getNombre() { return nombre; } public String getMessage() { return message; } public Double getLat() { return lat; } public Double getLng() { return lng; } public Integer getZoom() { return zoom; } public Integer getMinZoom() { return minZoom; } public Integer getMaxZoom() { return maxZoom; } public String getMapaBase() { return mapaBase; } public String getBounds() { return bounds; } }