CommentResponseDto.java
package com.edtech.dto;
import java.time.ZonedDateTime;
import java.util.UUID;
/** Javadoc. */
public class CommentResponseDto {
private UUID id;
private String content;
private ZonedDateTime createdAt;
private UUID authorId;
private String authorName;
public UUID getId() {
return id;
}
public void setId(UUID id) {
this.id = id;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public ZonedDateTime getCreatedAt() {
return createdAt;
}
public void setCreatedAt(ZonedDateTime createdAt) {
this.createdAt = createdAt;
}
public UUID getAuthorId() {
return authorId;
}
public void setAuthorId(UUID authorId) {
this.authorId = authorId;
}
public String getAuthorName() {
return authorName;
}
public void setAuthorName(String authorName) {
this.authorName = authorName;
}
}