Files
wenzi/src/main/java/com/mosquito/project/dto/CreateApiKeyResponse.java

16 lines
263 B
Java
Raw Normal View History

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