Merge branch 'pass-lifetime-fixes' into 'main'
[ProtonMail-WebClient.git] / packages / components / containers / vpn / gateways / GatewayDto.ts
blob8c989c35a684c32d9228c3b071ca4c4e087738d1
1 import type { GatewayLocation } from './GatewayLocation';
3 export interface GatewayDto {
4     name?: string;
5     location: GatewayLocation;
6     quantities?: Record<string, number>;
7     unassignedIpQuantities: Record<string, number>;
8     features: number;
9     userIds: readonly string[];
10     checkedLocations?: object[];