Files
stacjownik/src/scripts/interfaces/api/DispatchersAPIData.ts
T

14 lines
310 B
TypeScript

export interface DispatcherHistory {
id: string;
currentDuration: number;
dispatcherId: number;
dispatcherName: string;
isOnline: boolean;
lastOnlineTimestamp: number;
region: string;
stationHash: string;
stationName: string;
timestampFrom: number;
timestampTo?: number;
}