chore: initial commit with CI pipeline, review and tasks docs
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.mosquito.project.dto;
|
||||
|
||||
public class CreateApiKeyResponse {
|
||||
|
||||
private String apiKey;
|
||||
|
||||
public CreateApiKeyResponse(String apiKey) {
|
||||
this.apiKey = apiKey;
|
||||
}
|
||||
|
||||
// Getter
|
||||
public String getApiKey() {
|
||||
return apiKey;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user