mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-25 14:47:45 -06:00
13 lines
173 B
TypeScript
13 lines
173 B
TypeScript
class Proxy {
|
|
host: string;
|
|
port: string;
|
|
protocol: string;
|
|
username?: string;
|
|
password?: string;
|
|
}
|
|
|
|
export class ProxyDto {
|
|
enabled: boolean;
|
|
proxy: Proxy;
|
|
}
|