Skip to content

Commit

Permalink
[FIX] admin 토너먼트 타입 변경#1084
Browse files Browse the repository at this point in the history
  • Loading branch information
Junho Jeon committed Nov 10, 2023
1 parent eec02aa commit 3c95c7e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions types/admin/adminTournamentTypes.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
export interface ITournament {
tournamentName: string;
content: string;
startTime: Date;
endTime: Date;
tournamentType: 'CUSTOM' | 'ROOKIE' | 'MASTER';
title: string; //제목
content: string; //내용
startTime: Date; //시작시간
endTime: Date; // 종료시간
tournamentType: 'CUSTOM' | 'ROOKIE' | 'MASTER'; //토너먼트 타입
count?: number; //참여인원 (최대참여인원 8명 fix)
}

export interface ITournamentTable {
Expand Down

0 comments on commit 3c95c7e

Please sign in to comment.