Skip to content

Commit 9380b37

Browse files
fix: dto에서 optional 제거
1 parent 19c2975 commit 9380b37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export class UserWorkspaceDto {
22
workspaceId: string;
33
title: string;
4-
description?: string | null;
5-
thumbnailUrl?: string | null;
4+
description: string | null;
5+
thumbnailUrl: string | null;
66
role: 'owner' | 'guest';
77
}

0 commit comments

Comments
 (0)