Skip to content

Commit

Permalink
feat: DTO를 변경함에 따라 사용되는 DTO 타입도 동일한 계층구조를 가지도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
geongyu09 committed Feb 2, 2025
1 parent 5ad09ee commit d3c1b49
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion FE/src/types/member.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ export type AttendStatus =
| "nonResponse"
| "nonRelated";

export interface MemberInfo {
export interface Member {
memberId: number;
name: string;
}

export interface MemberInfo extends Member {
attendStatus: AttendStatus;
activeStatus: ActiveStatus;
}
Expand Down

0 comments on commit d3c1b49

Please sign in to comment.