Merge pull request #110 from TeamBNBN/be/ws

[Back-End] WebSocket dto 변경
This commit is contained in:
Jungmin 2024-07-25 10:08:47 +09:00 committed by GitHub
commit 98643fea94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 4 deletions

View File

@ -7,7 +7,6 @@ import lombok.Setter;
@Getter @Getter
@Setter @Setter
public class MessageDto { public class MessageDto {
long lectureId;
long userId; long userId;
String name; String name;
String content; String content;

View File

@ -7,7 +7,6 @@ import lombok.Setter;
@Getter @Getter
@Setter @Setter
public class QuizDto { public class QuizDto {
int lectureId; long userId;
int userId; long quizSetId;
int quizSetId;
} }