Spaces:
Runtime error
Runtime error
File size: 197 Bytes
5e518ea |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
export class LabelDto {
id?: string;
name: string;
color: string;
predefinedId?: string;
}
export class HandleLabelDto {
number: string;
labelId: string;
action: 'add' | 'remove';
}
|