export interface INetworkInterface {
    gateway: string;
    ip_address: string;
    netmask: string | number;
    type: string;
}
