Skip to content

Commit

Permalink
#82 feat : Project 응답 객체 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
rivkode committed Apr 29, 2024
1 parent 2518889 commit ed63d58
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.seoultech.synergybe.domain.project.dto.response;

import com.seoultech.synergybe.domain.common.PageInfo;

import java.util.List;

public record GetListProjectResponse(
List<GetProjectResponse> getProjectResponses,
PageInfo pageInfo
) {
}

0 comments on commit ed63d58

Please sign in to comment.