/** * Interface for a port forwarding rule. */ export interface PortForwardingRule { id: string; Enable: boolean; Description?: string; InternalPort: number; ExternalPort: number; Protocol: 'TCP' | 'UDP' | 'TCP/UDP'; InternalClient: string; ExternalIPAddress?: string; LeaseDuration?: number; RemoteHost?: string; Origin?: string; Status?: string; } /** * Interface for port forwarding rules response. */ export type PortForwardingRules = PortForwardingRule[];