Skip to content

Commit

Permalink
[FE] ✨ Feat : 방명록 관련 타입 추가 (codestates-seb#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
nalsae committed Dec 12, 2023
1 parent 42d64e6 commit 5c7df6c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions client/src/types/data.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,3 +168,13 @@ export interface BoardRankDataInfo {
displayName: string;
likeNum: number;
}

export interface GuestbookDataInfo {
guestbookId: number;
content: string;
displayName: string;
imageUrl: string | null;
accountGrade: string;
createdAt: string;
modifiedAt: string;
}

0 comments on commit 5c7df6c

Please sign in to comment.