evolution-api/src/api/dto/label.dto.ts
2024-06-06 14:47:58 -03:00

13 lines
197 B
TypeScript

export class LabelDto {
id?: string;
name: string;
color: string;
predefinedId?: string;
}
export class HandleLabelDto {
number: string;
labelId: string;
action: 'add' | 'remove';
}