Skip to content

Commit

Permalink
fix: 밈 수정 payload 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seohyun0120 committed Jun 29, 2024
1 parent b2838ba commit 2bc6cfd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/model/meme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ export interface IMemeCreatePayload {
}

export interface IMemeUpdatePayload {
title: string;
keywordIds: Types.ObjectId[];
source: string;
isTodayMeme: boolean;
title?: string;
keywordIds?: Types.ObjectId[];
source?: string;
isTodayMeme?: boolean;
}

export interface IMeme {
Expand Down

0 comments on commit 2bc6cfd

Please sign in to comment.