Skip to content

Commit

Permalink
feat: 상세정보조회 서버 인터페이스 업데이트
Browse files Browse the repository at this point in the history
  • Loading branch information
im-na0 committed Jun 13, 2024
1 parent efe64f4 commit 4442e28
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/types/room.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export type RoomData = {
hotelName: string;
roomName: string;
hotelImageUrlList: string[];
roomName: string;
checkIn: string;
checkOut: string;
originalPrice: number;
Expand All @@ -14,6 +14,11 @@ export type RoomData = {
hotelInfoUrl: string;
saleStatus: boolean;
isSeller: boolean;
roomAllRating: number;
hotelLevel: string;
sellerCommentList: string[];
facilityInformation: string;
isLike: boolean;
};
type RoomTheme = {
parkingZone: boolean;
Expand Down

0 comments on commit 4442e28

Please sign in to comment.