Skip to content

Commit

Permalink
Merge pull request #24 from catchroom/develop
Browse files Browse the repository at this point in the history
hotfix : serializable μˆ˜μ •
  • Loading branch information
sungjiwoon authored Jan 19, 2024
2 parents e959208 + f49c0b2 commit a734820
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 a734820

Please sign in to comment.