workadventure/back/src/Model/UserInterface.ts

8 lines
193 B
TypeScript
Raw Normal View History

2020-04-07 10:08:04 +02:00
import { Group } from "./Group";
import { PointInterface } from "./Websocket/PointInterface";
export interface UserInterface {
id: string,
group?: Group,
position: PointInterface
2020-04-07 10:08:04 +02:00
}