Files
evolution-api/src/whatsapp/dto/proxy.dto.ts
2023-12-28 10:35:41 -03:00

13 lines
173 B
TypeScript

class Proxy {
host: string;
port: string;
protocol: string;
username?: string;
password?: string;
}
export class ProxyDto {
enabled: boolean;
proxy: Proxy;
}