blob: 316b791786821fb403e85514d6d03bfbfaffff49 [file] [log] [blame]
export class FilterSelection {
all = true;
status = false;
notificationText = false;
freeText = false;
freeTextExtended = false;
responsibilityForwarding = false;
responsibilityControlPoint = false;
creator = false;
clerk = false;
resetFilterSelection(): void {
this.all = true;
this.status = false;
this.notificationText = false;
this.freeText = false;
this.freeTextExtended = false;
this.responsibilityForwarding = false;
this.responsibilityControlPoint = false;
this.creator = false;
this.clerk = false;
}
}