Skip to content

Commit

Permalink
❇️ feat: NotificationResponseDTO 생성
Browse files Browse the repository at this point in the history
NotificationResponseDTO 생성
  • Loading branch information
DongJun1110 committed Nov 21, 2024
1 parent 29f4aab commit ef66e7c
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package foregg.foreggserver.dto.notificationDTO;

import foregg.foreggserver.domain.enums.NotificationType;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;

@Getter
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class NotificationResponseDTO {

private Long id;
private NotificationType notificationType;
private String sender;
private String createdAt;
private String elapsedTime;

}

0 comments on commit ef66e7c

Please sign in to comment.