Skip to content

Commit

Permalink
πŸ“‘ :: QueryRecommendDetailsResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
alsco39 committed Dec 13, 2023
1 parent 9999f25 commit 9e9b637
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package com.example.signalbackend.domain.recommend.presentation.dto.response;

import lombok.AllArgsConstructor;
import lombok.Getter;

import java.time.LocalDate;

@Getter
@AllArgsConstructor
public class QueryRecommendDetailsResponse {

private final String title;
private final String image;
private final String content;
private final String link;
private final String name;
private final String profile;
private final LocalDate createDate;
}

0 comments on commit 9e9b637

Please sign in to comment.