Merge branch 'fix/isloading-photos' into 'main'
[ProtonMail-WebClient.git] / packages / components / containers / vpn / gateways / Gateway.ts
bloba60eac15320959c53a13a0b71ba72c0cc548ef73
1 import type { GatewayLogical } from './GatewayLogical';
2 import type { GatewayUser } from './GatewayUser';
4 export interface Gateway {
5     Name: string;
6     ExitCountry: string;
7     Logicals: GatewayLogical[];
8     Users: GatewayUser[];