Comment
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
public class Comment {
private String text;
private Instant moment;
private Author author;
}
Atualizado
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
public class Comment {
private String text;
private Instant moment;
private Author author;
}
Atualizado