package com.mosquito.project.dto; public class CreateApiKeyResponse { private String apiKey; public CreateApiKeyResponse(String apiKey) { this.apiKey = apiKey; } // Getter public String getApiKey() { return apiKey; } }