mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
14 lines
310 B
TypeScript
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;
|
|
} |