Skip to content

Instantly share code, notes, and snippets.

@pascalwhoop
Created October 12, 2016 12:21
Show Gist options
  • Save pascalwhoop/8e6eb85369e91134ba0abb1b8c1b749e to your computer and use it in GitHub Desktop.
Save pascalwhoop/8e6eb85369e91134ba0abb1b8c1b749e to your computer and use it in GitHub Desktop.
import {ICoordinate} from "./LiveMapModels";
import {TimeSpan} from "./UtilityInterfaces";
export interface IUser {
username: string;
size: number;
clientId: number;
language?: string;
uwb?: number;
parkplatzNr?: number;
sizeMeasured?: number;
current_zone?: number;
path?: ICoordinate[];
role?: string;
photoUrl?: string;
creation?: Creation;
rfidUserId?: string;
rfidHatId?: string;
creationTime?: string;
parkplatzZoneId?: string;
work_time?: TimeSpan;
learning_time?: TimeSpan;
tool_use_time?: TimeSpan;
}
export interface Creation {
hour: number;
minute: number;
second: number;
nano: number;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment