Skip to content

Commit

Permalink
chore(develop): sync types to dmgincs/nestjs-api
Browse files Browse the repository at this point in the history
  • Loading branch information
damageinc-bot[bot] committed Jun 21, 2024
1 parent aead28e commit 0f29e02
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions src/admin/GetIPSStrikesResponse.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

export class GetIPSStrikesResponseDto {
/** The reason of why the member received the strike */
content: string;

/** The timestamp at which the strike was issued */
date: string;

/** The ID of the member */
memberId: number;

/** The ID of the issuer */
issuerId: number;

/** The amount of points the member received for the strike */
points: number | null;

/** The content for moderators */
modContent: string | null;

/** The displayed reason for the strike */
reason: string;

/** The date at which the strike will expire */
expireDate: string | null;

/** Whether the strike was acknowledged by the member */
acknowledged: boolean;
}

0 comments on commit 0f29e02

Please sign in to comment.