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