mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-23 21:57:45 -06:00
13 lines
203 B
TypeScript
13 lines
203 B
TypeScript
export class Session {
|
|
remoteJid?: string;
|
|
sessionId?: string;
|
|
status?: string;
|
|
createdAt?: number;
|
|
updateAt?: number;
|
|
}
|
|
|
|
export class IgnoreJidDto {
|
|
remoteJid?: string;
|
|
action?: string;
|
|
}
|