mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-13 07:04:50 -06:00
15 lines
206 B
TypeScript
15 lines
206 B
TypeScript
export class NumberDto {
|
|
number: string;
|
|
}
|
|
|
|
export class getCatalogDto {
|
|
number?: string;
|
|
limit?: number;
|
|
cursor?: string;
|
|
}
|
|
|
|
export class getCollectionsDto {
|
|
number?: string;
|
|
limit?: number;
|
|
}
|