summaryrefslogtreecommitdiff
path: root/jws/endpoints/src/main/java/fr/epita/assistants/presentation/rest/request/ReverseRequest.java
blob: 0a8fc7d3038e6b33419dca308fcac33bc19b4c1c (plain)
1
2
3
4
5
6
7
8
9
10
package fr.epita.assistants.presentation.rest.request;

import lombok.AllArgsConstructor;
import lombok.Getter;

@AllArgsConstructor
@Getter
public class ReverseRequest {
    String content;
}