Skip to content

Commit

Permalink
feat: 학교 검색 DTO 가져오기
Browse files Browse the repository at this point in the history
  • Loading branch information
seokjin8678 authored and carsago committed Mar 25, 2024
1 parent e93a71e commit 1c3d3cd
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.festago.school.dto.v1;

import com.querydsl.core.annotations.QueryProjection;

public record SchoolSearchV1Response(
Long id,
String name,
String logoUrl
) {

@QueryProjection
public SchoolSearchV1Response {
}
}

0 comments on commit 1c3d3cd

Please sign in to comment.