You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mediarepo/mediarepo-ui/src/app/models/TagQuery.ts

9 lines
188 B
TypeScript

export class TagQuery {
constructor(public name: string, public negate: boolean) {
}
public getNormalizedTag(): string {
return this.negate ? "-" + this.name : this.name;
}
}