All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dream.dtos.CommentDTO Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.dream.dtos;

import lombok.*;

import javax.validation.constraints.NotBlank;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;

import java.time.LocalDateTime;

@Getter
@Setter
@Builder
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(Include.NON_NULL)
public class CommentDTO {
    private Long id;
    @NotBlank
    private String commentDescription;
    private LocalDateTime createdAt;
    private int likesNo;
    private int dislikesNo;
    private DreamDTO dream;
    private Long parentId;
    private String parentCommentDescription;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy