Skip to content

Commit

Permalink
#8 Add German title and description to achievable skill in frontend m…
Browse files Browse the repository at this point in the history
…odel

Signed-off-by: Sven Strittmatter <[email protected]>
  • Loading branch information
Weltraumschaf committed May 31, 2022
1 parent c272396 commit 83ae61e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ export interface IAchievableSkill {
teamSkillId?: number;
skillId?: number;
titleEN?: string;
titleDE?: string | null;
descriptionEN?: string | null;
descriptionDE?: string | null;
achievedAt?: Moment;
verifiedAt?: Moment;
vote?: number;
Expand All @@ -23,7 +25,9 @@ export class AchievableSkill implements IAchievableSkill {
public id?: number,
public skillId?: number,
public titleEN?: string,
public titleDE?: string | null,
public descriptionEN?: string | null,
public descriptionDE?: string | null,
public achievedAt?: Moment,
public verifiedAt?: Moment,
public vote?: number,
Expand Down

0 comments on commit 83ae61e

Please sign in to comment.