16 lines
263 B
Java
16 lines
263 B
Java
|
|
package com.mosquito.project.dto;
|
||
|
|
|
||
|
|
public class CreateApiKeyResponse {
|
||
|
|
|
||
|
|
private String apiKey;
|
||
|
|
|
||
|
|
public CreateApiKeyResponse(String apiKey) {
|
||
|
|
this.apiKey = apiKey;
|
||
|
|
}
|
||
|
|
|
||
|
|
// Getter
|
||
|
|
public String getApiKey() {
|
||
|
|
return apiKey;
|
||
|
|
}
|
||
|
|
}
|