mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-15 19:52:54 -06:00
13 lines
197 B
TypeScript
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';
|
|
}
|