Skip to content

Commit

Permalink
hotfix : serializable μˆ˜μ •
Browse files Browse the repository at this point in the history
  • Loading branch information
sungjiwoon committed Jan 19, 2024
1 parent 8bd9a58 commit f49c0b2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.catchroom.chat.message.entity.ChatMessage;
import com.catchroom.chat.message.type.MessageType;
import java.io.Serializable;
import java.time.LocalDateTime;
import lombok.AllArgsConstructor;
import lombok.Builder;
Expand All @@ -14,7 +15,7 @@
@Setter
@AllArgsConstructor
@NoArgsConstructor
public class ChatMessageDto {
public class ChatMessageDto implements Serializable {
// λ©”μ‹œμ§€ νƒ€μž… : μž…μž₯, μ±„νŒ…, 퇴μž₯

private MessageType type; // λ©”μ‹œμ§€ νƒ€μž…
Expand Down

0 comments on commit f49c0b2

Please sign in to comment.