Created
October 12, 2016 12:21
-
-
Save pascalwhoop/8e6eb85369e91134ba0abb1b8c1b749e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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