Skip to content

Commit

Permalink
feat #38: Problem 요청 dto 구성
Browse files Browse the repository at this point in the history
- 타입, 갯수로 요청
  • Loading branch information
GiHoo committed Apr 25, 2024
1 parent 19eb3db commit adcb117
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.syu.capsbe.domain.problem.dto.request;

import jakarta.validation.constraints.NotNull;
import lombok.AllArgsConstructor;
import lombok.Getter;

@Getter
@AllArgsConstructor
public class ProblemRequestDto {

@NotNull
private String problemType;

@NotNull
private int problemCount;
}

0 comments on commit adcb117

Please sign in to comment.