Allow nulls in groupLeader.ts.

This commit is contained in:
Iga Bartosz Collins 2023-01-31 12:47:12 +01:00
parent 51c946243b
commit 0d42b9e88a
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
export class GroupLeader {
id: number;
id: number | null;
personId: number;
groupId: number;
groupId: number | null;
constructor(id: number, personId: number, groupId: number) {
constructor(id: number | null, personId: number, groupId: number | null) {
this.id = id;
this.personId = personId;
this.groupId = groupId;