Skip to content

Commit

Permalink
피드백 2차 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
s-hwan committed Jan 29, 2025
1 parent b5cd4f5 commit f8a702e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

import java.time.LocalDate;

import jakarta.annotation.Nullable;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotNull;
import jakarta.validation.constraints.Size;

public record EditGroupRequest(
@Size(min = 1, max = 15, message = "스터디 이름은 1글자 이상 15글자 이하로 작성해야 합니다.") String name,
@NotBlank @Size(min = 1, max = 15, message = "스터디 이름은 1글자 이상 15글자 이하로 작성해야 합니다.") String name,
LocalDate startDate,
LocalDate endDate,
@Nullable String introduction,
String introduction,
@NotNull(message = "기본 이미지 여부는 필수 입니다") Boolean isDefaultImage) {
}

0 comments on commit f8a702e

Please sign in to comment.