1 import type { GatewayLocation } from './GatewayLocation';
3 export interface GatewayDto {
5 location: GatewayLocation;
6 quantities?: Record<string, number>;
7 unassignedIpQuantities: Record<string, number>;
9 userIds: readonly string[];
10 checkedLocations?: object[];