CoolFace
Apppublic

sakthivikram/geo-location

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
CreateCommentRequest.java22 linesDownload Raw Back to dto
1package com.georeport.dto;2 3import jakarta.validation.constraints.NotBlank;4import jakarta.validation.constraints.Size;5import lombok.Data;6 7/**8 * Request DTO for creating a new comment.9 */10@Data11public class CreateCommentRequest {12 13    @NotBlank(message = "Comment content is required")14    @Size(min = 1, max = 2000, message = "Comment must be between 1 and 2000 characters")15    private String content;16 17    /**18     * Optional parent comment ID for replies19     */20    private Long parentId;21}22