Skip to content

Commit

Permalink
refactor: 행사 생성 요청 객체 검증 애너테이션 @SiZe 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
kunsanglee committed Jul 24, 2024
1 parent 1f0bb13 commit 2d00932
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
package server.haengdong.presentation.request;

import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.Size;
import server.haengdong.application.request.EventAppRequest;

public record EventSaveRequest(

@NotBlank
@Size(min = 2, max = 20)
String eventName
) {

Expand Down

0 comments on commit 2d00932

Please sign in to comment.