blob: 2dbc9d0bd9d93549a352bb2e780e849ac7f4e020 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package fr.epita.assistants.presentation.rest.response;
import lombok.Getter;
@Getter
public class HelloResponse {
String content;
public HelloResponse(String content) {
this.content = "hello " + content;
}
}
|