Skip to content

Commit

Permalink
UMC-EWHA#31 Rename: Rename Board
Browse files Browse the repository at this point in the history
  • Loading branch information
JoongHyun-Kim committed Nov 23, 2022
1 parent b6f315b commit 8506963
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package umc.crud.src.board.model;

public class BoardDto {
public class Board {
private int boardId;
private String content;
private String writer;

public BoardDto() {
public Board() {
}

public BoardDto(int boardId, String content, String writer) {
public Board(int boardId, String content, String writer) {
this.boardId = boardId;
this.content = content;
this.writer = writer;
Expand Down

0 comments on commit 8506963

Please sign in to comment.