mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-21 19:47:21 -06:00
9 lines
140 B
TypeScript
9 lines
140 B
TypeScript
export class ProxyDto {
|
|
enabled: boolean;
|
|
host: string;
|
|
port: string;
|
|
protocol: string;
|
|
username?: string;
|
|
password?: string;
|
|
}
|