Skip to content

Commit

Permalink
⭐️ :: CommentRequest
Browse files Browse the repository at this point in the history
  • Loading branch information
gurdl0525 committed Nov 12, 2023
1 parent 232138d commit 5fd8cbf
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.example.onui.domain.timeline.presentation.dto.request

import javax.validation.constraints.NotBlank
import javax.validation.constraints.Size

data class CommentRequest(

@field:NotBlank(message = "comment는 null일 수 없습니다.")
@field:Size(max = 50, message = "댓글은 최대 50자 입니다.")
val comment: String
)

0 comments on commit 5fd8cbf

Please sign in to comment.