Skip to content

Commit

Permalink
Merge pull request #32 from Team-O2/feat/#26
Browse files Browse the repository at this point in the history
Feat/#26
  • Loading branch information
holmir97 authored Sep 6, 2021
2 parents c967193 + 3eb8691 commit f59b5e7
Show file tree
Hide file tree
Showing 12 changed files with 445 additions and 332 deletions.
25 changes: 6 additions & 19 deletions src/DTO/adminDTO.ts
Original file line number Diff line number Diff line change
@@ -1,31 +1,18 @@
namespace adminDTO {
export interface IAdmin {
title: String;
registerStartDT: Date;
registerEndDT: Date;
challengeStartDT: Date;
challengeEndDT: Date;
generation: Number;
limitNum: Number;
img: string;
createdDT: Date;
applyNum: Number;
}

interface Admin {
export interface adminResDetailDTO {
registerStartDT: Date;
registerEndDT: Date;
challengeStartDT: Date;
challengeEndDT: Date;
generation: number;
createdDT: Date;
createdAT?: Date;
applyNum: number;
participants: number;
postNum: number;
img: string;
participants?: number;
postNum?: number;
img?: string;
}
export interface adminResDTO {
offsetAdmin: Admin[];
offsetAdmin: adminResDetailDTO[];
totalAdminNum?: number;
}

Expand Down
Loading

0 comments on commit f59b5e7

Please sign in to comment.